/** * @slot graphic - Slot for the blankslate icon * @slot heading - Slot for the blankslate title * @slot default - Slot for the blankslate default message * @slot actions - Slot for the blankslate actions */ export declare class SlitheBlankslate { host: HTMLSlBlankslateElement; /** * The blankslate heading level */ heading?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; slots: { graphic: boolean; heading: boolean; default: boolean; actions: boolean; }; get _heading(): "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; get class(): { 'sl-blankslate': boolean; 'has-graphic': boolean; 'has-heading': boolean; 'has-default': boolean; 'has-actions': boolean; }; private handleSlotChange; connectedCallback(): void; render(): any; }