import React from 'react'; import { Justify } from '../utils/prop-types'; import { CSS } from '../theme/stitches.config'; import { ModalHeaderVariantsProps } from './modal.styles'; interface Props { className?: string; justify?: Justify; autoMargin?: boolean; css?: CSS; as?: keyof JSX.IntrinsicElements; } declare const defaultProps: { className: string; justify: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly"; autoMargin: boolean; }; declare type NativeAttrs = Omit, keyof Props>; export declare type ModalHeaderProps = Props & typeof defaultProps & NativeAttrs & ModalHeaderVariantsProps; declare const _default: React.ComponentType & Omit>; export default _default;