import React from "react";
import { Theme } from "@emotion/react";
declare module "@mui/material/styles" {
    interface TypographyVariants {
        "button-small": React.CSSProperties;
        "button-medium": React.CSSProperties;
        "button-large": React.CSSProperties;
    }
    interface TypographyVariantsOptions {
        "button-small"?: React.CSSProperties;
        "button-medium"?: React.CSSProperties;
        "button-large"?: React.CSSProperties;
    }
}
declare module "@mui/material/Button" {
    interface ButtonPropsVariantOverrides {
        tonal: true;
    }
}
interface Props {
    children: React.ReactNode;
    theme?: Theme;
}
declare const SalesProTheme: React.FC<Props>;
export default SalesProTheme;
