import React from 'react'; interface HeaderProps { onCancel: () => void; title: string; onDone: () => void; /** * Allows you to focus the done button when this renders for accessibility. */ doneButtonRef?: React.RefObject; /** * Heading ID for aria-labelledby reference. */ headingId?: string; disableDoneButton?: boolean; /** * @default 'Done' */ doneButtonText?: string; } declare const Header: ({ onCancel, title, onDone, doneButtonRef, headingId, disableDoneButton, doneButtonText }: HeaderProps) => JSX.Element; export default Header;