import { DemoData } from "../../global/demo"; import { CustomFieldsViewProps } from "./sqm-user-name-view"; /** * @uiName Custom Fields * @exampleGroup Common Components * @example User Name Display - */ export declare class CustomFields { ignored: boolean; /** * Text displayed while the participant’s name is loading. * @uiName Loading text */ loadingText: string; /** * The custom field key to display. * @uiName Custom field key */ value: string; /** * @undocumented * @uiType object */ demoData?: DemoData; constructor(); disconnectedCallback(): void; render(): any; }