import type { CSSProperties, MouseEvent } from 'react'; interface ActionButtonsProps { onDone: (event?: MouseEvent) => void; onCancel: (event?: MouseEvent) => void; doneLabel?: string; cancelLabel?: string; style?: CSSProperties; disabledDone?: boolean; } export default function ActionButtons(props: ActionButtonsProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ActionButtons.d.ts.map