import { MantineTheme } from "@mantine/core";
import { CalloutVariant } from "./Callout.types";
type StyleParams = {
    variant: CalloutVariant;
};
export declare const useStyles: (params: StyleParams, options?: import("@mantine/core").UseStylesOptions<string> | undefined) => {
    classes: {
        root: string;
        icon: string;
        body: string;
        title: string;
    };
    cx: (...args: any) => string;
    theme: MantineTheme;
};
export {};
