import React from 'react';
interface ButtonsStyle {
    backgroundColor?: string;
    textColor?: string;
    fontFamily?: string;
}
interface Props {
    text: string;
    onPress: () => void;
    style?: ButtonsStyle;
}
export declare const Button: React.FC<Props>;
export {};
//# sourceMappingURL=Button.d.ts.map