export interface SaveButtonProps { label?: React.ReactNode; onClick: (e: React.MouseEvent) => void; ['aria-describedby']: string | undefined; } declare const SaveButton: React.FC; export interface IsolationModeButtonsProps { saveLabel?: React.ReactNode; cancelLabel?: React.ReactNode; onCancel: (e: React.MouseEvent) => void; ['aria-describedby']: string | undefined; } /** * Button row rendered when an edit grid item is in isolation & editing mode. * * Isolation mode guarantees us that a formik context is available _for the inner item_. * Likely there's also a Formik context for the entire form as a whole, but that's the * wrong one. * * The `canEdit` is not relevant here anymore - this component shouldn't be rendered * in the first place if editing is not enable (as it doesn't allow toggling) into * edit state. */ declare const IsolationModeButtons: React.FC; export { SaveButton, IsolationModeButtons };