import { Context } from 'react'; type EmptyStateType = 'error-generic' | 'new-object' | 'no-access' | 'no-results' | 'not-found' | 'new-chat' | 'unknown'; type EmptyStateContextValue = { variant: 'compact' | 'full'; type?: EmptyStateType; }; declare const EmptyStateContext: Context; declare const useEmptyState: () => EmptyStateContextValue; export { EmptyStateContext, useEmptyState }; export type { EmptyStateType };