import { ColorDefinition, ThemeDefinitionV2 } from "./ThemeDefinitionV2";
import { TypographyType } from "./TypographyDefinition";
export declare const useThemeMethods: (themedefinition: ThemeDefinitionV2) => {
    colorSchema: (colorSchemaType: string) => import("./ThemeDefinitionV2").ColorSchema;
    typography: (typographyType: string) => TypographyType;
    color: (colorSchemaType: string, colorType: string) => string;
    colorDefinition: (colorSchemaType: string, colorType: string) => ColorDefinition;
    complementaryColorType: (colorType: string) => string;
    complementaryColor: (colorSchemaType: string, colorType: string) => string;
    complementaryColorDefinition: (colorSchemaType: string, colorType: string) => ColorDefinition;
};
