import { Testable, WithStyles } from "../..";
export declare type NativeButtonOwnProps = {
    title: string;
    onPress: () => void;
    icon?: any;
    extraItemLeft?: any;
    extraItemRight?: any;
} & Testable;
export declare type NativeButtonProps = NativeButtonOwnProps & WithStyles;
