import { LitElement } from 'lit'; export interface EmptyStateProps { title?: string; subtitle?: string; buttonText?: string; size?: 'sm' | 'md' | 'lg'; bordered?: boolean; rounded?: boolean; } export declare class AgEmptyState extends LitElement implements EmptyStateProps { title: string; subtitle: string; buttonText: string; size: 'sm' | 'md' | 'lg'; bordered: boolean; rounded: boolean; private _hasIconSlot; private _hasActionsSlot; constructor(); private _handleSlotChange; firstUpdated(): void; static styles: import('lit').CSSResult; render(): import('lit').TemplateResult<1>; } //# sourceMappingURL=_EmptyState.d.ts.map