import { IconPack, UIConfig } from '../../exports'; import { DyteI18n } from '../../lib/lang'; import { Meeting } from '../../types/dyte-client'; import { Size, States } from '../../types/props'; /** * Controlbar component provides you with various designs as variants. * * @slot - Default slot */ export declare class DyteControlbar { /** Variant */ variant: 'solid' | 'boxed'; /** Whether to render the default UI */ disableRender: boolean; /** Meeting */ meeting: Meeting; /** Config */ config: UIConfig; /** States */ states: States; /** Icon Pack */ iconPack: IconPack; /** Language */ t: DyteI18n; /** Size */ size: Size; render(): any; }