import { ReactElement } from "react"; import { ActionModel } from "./Actions"; interface ActionIconProps { action: ActionModel; } /** * Renders the icon for an action button. * Should not be used outside the ActionSheet component. * * @param {ActionIconProps} props - The properties for the action icon. * @param {ActionModel} props.action - The action model defining what action to perform. * @returns {ReactElement | null} - The icon for the action button, or null if no icon is defined. */ export declare const ActionIcon: ({ action }: ActionIconProps) => ReactElement | null; export {};