import * as React from 'react'; import type { EmptyStateProps } from './EmptyState'; type EmptyStateProviderProps = { size?: EmptyStateProps['size']; }; export declare const EmptyStateContext: React.Context; export declare const EmptyStateProvider: ({ size, children }: React.PropsWithChildren) => React.JSX.Element; export {};