export default function createModalDialogStyleSet(): {
    '&.webchat__modal-dialog': {
        fontFamily: "var(--webchat__font--primary)";
        maxHeight: string;
        maxWidth: string;
        width: string;
        "@media (forced-colors: none)": {
            backgroundColor: string;
            border: number;
        };
        '& .webchat__modal-dialog__box': {
            borderRadius: number;
            overflow: string;
            margin: string;
            '@media screen and (max-width: 639px)': {
                maxWidth: string;
            };
            '@media screen and (min-width: 640px)': {
                maxWidth: string;
                minWidth: string;
                width: string;
            };
            "@media (forced-colors: none)": {
                backgroundColor: string;
                boxShadow: string;
            };
            "@media (forced-colors: none) and not (forced-colors: none)": {
                backgroundColor: string;
                boxShadow: string;
                color: string;
            };
            "@media (forced-colors: active)": {
                outlineColor: string;
                outlineStyle: string;
                outlineWidth: number;
            };
        };
        '& .webchat__modal-dialog__close-button-layout': {
            float: string;
            padding: "var(--webchat__padding--regular)";
        };
        '& .webchat__modal-dialog__close-button': {
            height: number;
            width: number;
            "@media (forced-colors: none)": {
                appearance: string;
                backgroundColor: string;
                borderColor: string;
                borderRadius: number;
                borderStyle: string;
                borderWidth: number;
                color: string;
                outline: number;
            };
        };
        '& .webchat__modal-dialog__close-button:focus': {
            "@media (forced-colors: none)": {
                borderColor: string;
                '&:active': {
                    backgroundColor: string;
                };
                '&:not(:active):hover': {
                    backgroundColor: string;
                };
            };
            "@media (forced-colors: none) and not (forced-colors: none)": {
                borderColor: string;
                '&:active': {
                    backgroundColor: string;
                };
                '&:not(:active):hover': {
                    backgroundColor: string;
                };
            };
        };
        '& .webchat__modal-dialog__close-button-image': {
            height: number;
            width: number;
            "@media (forced-colors: none)": {
                fill: string;
            };
            "@media (forced-colors: none) and not (forced-colors: none)": {
                fill: string;
            };
            "@media (forced-colors: active)": {
                fill: string;
            };
        };
        '& .webchat__modal-dialog__body': {
            margin: string;
        };
    };
};
//# sourceMappingURL=ModalDialog.d.ts.map