import { JSX } from '../../../stencil-public-runtime'; import { GuxBlankStateAlignment } from './gux-blank-state.types'; /** * @slot primary-message - Required slot for primary-message. * @slot image - Slot for gux-icon element or gux-illustration-beta. * @slot additional-guidance - Slot for additional-guidance. * @slot call-to-action - Slot for the message call to action button. * @slot secondary-call-to-action - Slot for the message call to action secondary button. */ export declare class GuxBlankStateBeta { root: HTMLElement; private hasCallToAction; private hasSecondaryCallToAction; private hasGuidance; alignment: GuxBlankStateAlignment; noPadding: boolean; onMutation(): void; private renderImageSlot; private renderCallToActions; private renderGuidanceSlot; componentWillLoad(): void; render(): JSX.Element; }