import * as React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import type { IconNameType } from '../../assets'; export type BlockButtonProps = { onPress?: () => void; containerStyle?: StyleProp; iconName: IconNameType; text: string; preventHighFrequencyClicks?: boolean; frequencyInterval?: number; }; export declare function BlockButton(props: BlockButtonProps): import("react/jsx-runtime").JSX.Element; export type BlockButtonComponentType = React.ComponentType | React.ExoticComponent; //# sourceMappingURL=BlockButton.d.ts.map