import { type ReactNode } from "react"; interface IAlertingDialogHeaderProps { title: string; isSecondaryTitleVisible?: boolean; secondaryTitle?: string; secondaryTitleIcon: ReactNode; onChange: (value: string, isValid: boolean) => void; onCancel?: () => void; placeholder: string; } export declare const AlertingDialogHeader: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=AlertingDialogHeader.d.ts.map