import { default as React } from 'react';
export interface AppleButtonProps {
    mode?: 'signin' | 'signup' | 'continue';
    dark?: boolean;
    shape?: 'square' | 'rounded';
    width?: string | number;
    height?: string | number;
    onClick?: () => void;
    disabled?: boolean;
    className?: string;
}
declare const AppleButton: React.FC<AppleButtonProps>;
export default AppleButton;
