interface LoadingStateProps {
    message?: string;
}
export declare function LoadingState({ message }: LoadingStateProps): import("react/jsx-runtime").JSX.Element;
interface ErrorStateProps {
    error: string;
    onRetry?: () => void;
}
export declare function ErrorState({ error, onRetry }: ErrorStateProps): import("react/jsx-runtime").JSX.Element;
interface EmptyStateProps {
    onClearFilters?: () => void;
}
export declare function EmptyState({ onClearFilters }: EmptyStateProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=LoadingState.d.ts.map