export declare class BiLogo { /** * Determines if the logo should be displayed in the negative version, * useful when displaying the logo on a dark background. * @default false */ dark?: boolean; /** * Determines if the international logo should be used. * @default false */ international?: boolean; /** * Determines if the logo text should be displayed vertically. * Only applies when `international` is `true`. * @default false */ vertical?: boolean; /** * Determines the height of the logo. * @default 'medium' */ size?: 'xs' | 'small' | 'medium' | 'large' | 'xl' | 'xxl'; disableInternational: boolean; private resizeListener; connectedCallback(): void; componentWillRender(): void; disconnectedCallback(): void; render(): any; private getImage; }