import React from 'react'; import { IconProps } from './Icon'; export interface IconButtonProps extends IconProps { /** * Whether the button is disabled. A disabled button is greyed out * and onPress is not called on touch. */ disabled?: boolean; /** * Accessibility label for the button. This is read by the screen * reader when the user taps the button. */ accessibilityLabel?: string; /** * Function to execute on press. */ onPress?: () => void; style?: any; children?: React.ReactNode; } export declare const IconButtonDefaultProps: Partial; /** * 🗿 IconButton * * An icon button is a button which displays only an icon without a label. */ export declare const IconButton: React.ComponentType;