import React from 'react';
type ButtonProps = {
    title: string;
    onPress: () => void;
    variant?: 'primary' | 'secondary';
    disabled?: boolean;
};
declare const Button: ({ title, onPress, variant, disabled }: ButtonProps) => React.JSX.Element;
export default Button;
