import { CSSProperties, DefineProps } from 'vue'; type LooseRequired = { [P in keyof (T & Required)]: T[P]; }; type BaseStyle = { readonly customStr?: string; custom?: Record; style?: CSSProperties | string; slotted?: boolean; }; /** */ export declare function parseComputedStyles, any>>(name: string, props: T, initialStyle?: CSSProperties): string; /** Returns the image source as-is (Blue Room CDN functionality removed in v0.8.0) */ export declare function transformImageSrc(src?: string): string | undefined; export {};