import { Colors } from './types/Colors';
export type Theme = 'solid' | 'outline' | 'light' | 'dark';
type Options = {
    color: Colors;
};
export declare const themes: (color: Colors) => Record<Theme, {
    thRoot: string;
}>;
export declare const getTheme: (theme: Theme, { color }: Options) => {
    thRoot: string;
};
export {};
