import { DropdownStatus as DropdownStatusType } from '@mezzanine-ui/core/dropdown/dropdown'; import { IconDefinition } from '@mezzanine-ui/icons'; export interface DropdownStatusProps { /** * The status of the dropdown. * @default 'loading' */ status: DropdownStatusType; /** * The text of the dropdown loading status. */ loadingText?: string; /** * The text of the dropdown empty status. */ emptyText?: string; /** * The icon of the dropdown empty status. */ emptyIcon?: IconDefinition; } export default function DropdownStatus(props: DropdownStatusProps): import("react/jsx-runtime").JSX.Element;