import { ThemeCoats, ThemeObject, ThemeValueLike } from '@o/css';
export declare type CompiledTheme = any> = {
[key in keyof A]: A[key] extends ThemeCoats | string | number ? A[key] : ThemeValueLike;
};
export declare function createTheme>(theme: A, prefixName?: string, renameKeys?: boolean): CompiledTheme;
export declare function createThemes>(themes: {
[key: string]: A;
}): {
[key: string]: CompiledTheme;
};
//# sourceMappingURL=createTheme.d.ts.map