import type { CSS } from "../theme/stitches.config"; import React from "react"; import { Justify } from "../utils/prop-types"; import { ModalHeaderVariantsProps } from "./modal.styles"; interface Props { className?: string; justify?: Justify; autoMargin?: boolean; css?: CSS; as?: keyof JSX.IntrinsicElements; children?: React.ReactNode; } 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, "justify" | "className" | "autoMargin">>; export default _default;