export type EditHeaderProps = { title: string; cancel: { label: string; action: () => void; }; confirm: { label: string; action: () => void; }; }; export declare const EditHeader: (props: EditHeaderProps) => import("react/jsx-runtime").JSX.Element;