import React from "react";
import { SxProps } from "@mui/system";
type TOSAgreementProps = {
    productName: string;
    description: React.ReactNode | string;
    onConfirm: VoidFunction;
    children?: React.ReactNode;
    sx?: SxProps;
    confirmBtnDisabled?: boolean;
    confirmBtnLabel?: string;
};
export declare function TOSAgreement({ productName, description, children, onConfirm, sx, confirmBtnDisabled, confirmBtnLabel, }: TOSAgreementProps): import("react/jsx-runtime").JSX.Element;
export {};
