/** * Verify banner helps users verify they are on an official Government of Canada website by providing clear information on how to recognize legitimate Government of Canada domains and secure connections. */ export declare class GcdsVerifyBanner { el: HTMLElement; /** * Props */ /** * Defines the container width of the verify banner content */ container?: 'full' | 'xl' | 'lg' | 'md' | 'sm' | 'xs'; /** * Defines if the banner's position is fixed. */ isFixed?: boolean; /** * Language of rendered component */ lang: string; updateLang(): void; componentWillLoad(): Promise; render(): any; }