export interface OwnProps { input?: any; type?: string; label?: string; disabled?: boolean; color?: string; icon?: string; withoutBorder?: boolean; primary?: boolean; secondary?: boolean; name?: string; onChange?: () => void; } export interface State { isActive: boolean; isVisible: boolean; } export declare type Props = OwnProps;