export interface LogoProps { /** * brand to use for the logo. This, along with variant, will determine which logo to display. */ brand?: 'leaflink' | 'payments' | 'marketplace' | 'flex-pay' | 'direct-pay' | 'post'; /** * What color the logo should be. */ color?: 'purple' | 'white'; /** * Which variant of the logo to display. */ variant?: 'lockup' | 'brandmark'; /** * Width of the logo. */ width?: string | number; /** * Height of the logo. */ height?: string | number; } declare const __VLS_export: import("vue").DefineComponent any; }, string, import("vue").PublicProps, Readonly & Readonly<{ onError?: ((msg: string) => any) | undefined; }>, { color: "purple" | "white"; variant: "lockup" | "brandmark"; height: string | number; width: string | number; brand: "leaflink" | "payments" | "marketplace" | "flex-pay" | "direct-pay" | "post"; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;