import React from "react"; import { PolymorphicComponentPropsWithRef } from "../system/types"; type Props = { children: React.ReactNode; extendTopbar?: boolean; }; type DialogHeaderProps = PolymorphicComponentPropsWithRef; type DialogHeaderComponent = (props: DialogHeaderProps) => React.ReactElement | null; declare const _default: DialogHeaderComponent; export default _default;