import { ReactElement } from 'react'; import { Action, PanelEditorValues } from '@perses-dev/core'; export interface PanelEditorFormProps { initialValues: PanelEditorValues; initialAction: Action; panelKey?: string; onSave: (values: PanelEditorValues) => void; onClose: () => void; } export declare function PanelEditorForm(props: PanelEditorFormProps): ReactElement; /** * The `id` attribute added to the `PanelEditorForm` component, allowing submit buttons to live outside the form. */ export declare const panelEditorFormId = "panel-editor-form"; //# sourceMappingURL=PanelEditorForm.d.ts.map