UNPKG

rn-custom-alert-prompt

Version:
13 lines (12 loc) 421 B
import React from 'react'; import { Button as ButtonType, ValidPlatforms } from '../types/alertTypes'; type Props = { button: ButtonType; buttons?: number; isFirst?: boolean; theme?: ValidPlatforms; appearance?: 'light' | 'dark'; onPress?: () => void; }; export declare const Button: ({ button, buttons, isFirst, theme, appearance, onPress: customPress, }: Props) => React.JSX.Element; export {};