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 {};
