import { type KeyboardEvent, type ReactNode } from "react"; interface IScheduledEmailDialogHeaderProps { title: string; placeholder: string; isSecondaryTitleVisible?: boolean; secondaryTitle?: string; secondaryTitleIcon: ReactNode; onChange: (value: string, isValid: boolean) => void; onKeyDownSubmit: (e: KeyboardEvent) => void; onBack?: () => void; } export declare const ScheduledEmailDialogHeader: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=ScheduleEmailDialogHeader.d.ts.map