import { GetStylesApi } from '../../core';
import type { EmptyStateFactory } from './EmptyState';
interface EmptyStateContextValue {
    getStyles: GetStylesApi<EmptyStateFactory>;
    withIndicatorBackground: boolean | undefined;
}
export declare const EmptyStateProvider: import("react").Context<EmptyStateContextValue | null>, useEmptyStateContext: () => EmptyStateContextValue;
export type { EmptyStateContextValue };
