import { ReactNode } from 'react';
export interface DropdownStatusProps {
    empty?: ReactNode;
    loadingText?: string;
    finishedText?: string;
    errorText?: string;
    recoveryText?: string;
    statusType?: DropdownStatusProps.StatusType;
}
export declare namespace DropdownStatusProps {
    type StatusType = 'pending' | 'loading' | 'finished' | 'error';
}
