import { EmptyStateLargeProps } from './variants/EmptyStateLarge'; import { EmptyStateMediumProps } from './variants/EmptyStateMedium'; import { EmptyStateSmallProps } from './variants/EmptyStateSmall'; type AvailableVariantsTypes = 'L' | 'M' | 'S'; export type VariantType = { variant: T; } & P; type Large = VariantType<'L', EmptyStateLargeProps>; type Medium = VariantType<'M', EmptyStateMediumProps>; type Small = VariantType<'S', EmptyStateSmallProps>; export type EmptyStateProps = Large | Medium | Small; export declare const EmptyState: import("react").ForwardRefExoticComponent>; export {};