import React from 'react'; import { CSS } from '../theme/stitches.config'; import { ModalBodyVariantsProps } from './modal.styles'; interface Props { className?: string; autoMargin?: boolean; as?: keyof JSX.IntrinsicElements; } declare const defaultProps: { className: string; autoMargin: boolean; }; declare type NativeAttrs = Omit, keyof Props>; export declare type ModalBodyProps = Props & typeof defaultProps & NativeAttrs & ModalBodyVariantsProps & { css?: CSS; }; declare const _default: React.ComponentType & Omit & { css?: CSS | undefined; }, "className" | "autoMargin">>; export default _default;