import { MantineColor, MantineThemeOverride } from "@mantine/core"; export default class ManTheme { /** * Create a new theme * @param props - the props to create */ create(props: MantineThemeOverride): this & import("@mantine/styles/lib/theme/types/DeepPartial").DeepPartial> & { other?: import("@mantine/core").MantineThemeOther | undefined; }; /** * Override an existing theme props or create a new one * @param props - the props to override * @param theme - The theme (optional) */ override(props: MantineThemeOverride, theme?: any): any; /** * Get a specified color and return the shades of it * @param color - the color to specified * @param theme - The theme (optional) */ getColor(color: MantineColor, theme?: any): any; /** * Get the colors of a theme * @param theme - The theme to retrieve colors (This is optional) */ getColors(theme?: any): any; } export declare const mantheme: ManTheme; //# sourceMappingURL=mantheme.d.ts.map