import * as React from 'react'; import type { ImageStyle, PressableProps, StyleProp, ViewStyle } from 'react-native'; import type { IconNameType } from '../../assets'; import { ButtonStateColor } from '../../theme'; import type { PartialDeep } from '../../types'; import { IconResolutionType } from '../Image'; export type IconButtonProps = Pick & { style?: StyleProp | undefined; containerStyle?: StyleProp | undefined; iconName: IconNameType; preventHighFrequencyClicks?: boolean; frequencyInterval?: number; buttonStateColors?: PartialDeep; iconResolution?: IconResolutionType; }; export declare function IconButton(props: IconButtonProps): import("react/jsx-runtime").JSX.Element; export declare const IconButtonMemo: React.MemoExoticComponent; //# sourceMappingURL=IconButton.d.ts.map