export interface OwnProps { label: string; type?: string; button?: string; style?: any; size: string; disabled?: boolean; onClick?: (cb: any) => void; } export declare type Props = OwnProps;