import { FC, VueNode } from "../typings"; import { PureSettings } from "../settings"; export interface LogoTitleProps extends PureSettings { collapsed?: boolean; logo?: VueNode; } declare const LogoTitle: FC; export { LogoTitle }; declare const _default: (import("vue").FunctionalComponent> & { install?: ((app: import("vue").App, ...options: any[]) => any) | undefined; } & ((app: import("vue").App, ...options: any[]) => any) & { install?: ((app: import("vue").App, ...options: any[]) => any) | undefined; }) | (import("vue").FunctionalComponent> & { install?: ((app: import("vue").App, ...options: any[]) => any) | undefined; } & { install: (app: import("vue").App, ...options: any[]) => any; }); export default _default;