import PropTypes from 'prop-types'; export declare const iconButtonArgTypes: { icon: { control: { type: string; }; description: string; }; title: { control: { type: string; }; description: string; }; 'aria-label': { control: { type: string; }; description: string; }; isDisabled: any; variant: { control: { type: string; options: string[]; }; description: string; }; onPress: any; onPressStart: any; onPressEnd: any; onPressChange: any; onPressUp: any; }; export declare const iconButtonArgs: { icon: import("@pingux/mdi-react").MdiReactIconComponentType; variant: string; }; export declare const iconButtonPropTypes: { variant: PropTypes.Requireable; 'aria-label': PropTypes.Requireable; title: PropTypes.Requireable; onPress: PropTypes.Requireable<(...args: any[]) => any>; onPressStart: PropTypes.Requireable<(...args: any[]) => any>; onPressEnd: PropTypes.Requireable<(...args: any[]) => any>; onPressChange: PropTypes.Requireable<(...args: any[]) => any>; onPressUp: PropTypes.Requireable<(...args: any[]) => any>; isDisabled: PropTypes.Requireable; };