import { ButtonProps } from '../Button'; export interface DropdownActionProps { /** * The text of the custom action button. */ actionText?: string; /** * The text of the cancel button. */ cancelText?: string; /** * The text of the clear button. */ clearText?: string; /** * The text of the confirm button. */ confirmText?: string; /** * The custom action button props of the dropdown. */ customActionButtonProps?: ButtonProps; /** * Click handler for cancel button. */ onCancel?: () => void; /** * Click handler for clear button. */ onClear?: () => void; /** * Click handler for confirm button. */ onConfirm?: () => void; /** * Click handler for custom action button. */ onClick?: () => void; /** * Whether to show the actions. * @default false */ showActions?: boolean; /** * If true, display a bar at the top of the dropdown action area. * @default false */ showTopBar?: boolean; } export default function DropdownAction(props: DropdownActionProps): import("react/jsx-runtime").JSX.Element;