import React from 'react'; import { IconName } from '../../types'; type Props = { icon: IconName; align?: 'left' | 'right'; backgroundColor?: string; iconColor?: string; iconSize?: number; size?: number; margin?: number; text?: string; onPress?: () => void; }; export declare const ActionButton: ({ align, backgroundColor, icon, iconColor, iconSize, onPress, margin, size, text, }: Props) => React.JSX.Element; export {};