import { Component } from 'react'; export interface DialogHeadProps { /** * 自定义 class */ className?: string; } export declare class DialogHead extends Component { static displayName: string; static defaultProps: { className: string; }; get className(): string; render(): import("react/jsx-runtime").JSX.Element; }