import { ReactNode } from 'react';
export interface ButtonStyles {
    color?: string;
    size?: string;
    variant?: string;
    skipHover?: boolean;
    isError?: boolean;
    isSuccess?: boolean;
    children?: ReactNode;
    theme?: 'helloSites' | 'marryBaby';
}
declare const _default: (params: ButtonStyles, options?: import("@mantine/core").UseStylesOptions<string>) => {
    classes: {
        root: string;
    };
    cx: (...args: any) => string;
    theme: import("@mantine/core").MantineTheme;
};
export default _default;
