import { ReactElement } from 'react'; export interface EditButtonProps { /** * The label used inside the button. */ label?: string; /** * Handler that puts the dashboard into editing mode. */ onClick: () => void; } export declare const EditButton: ({ label, onClick }: EditButtonProps) => ReactElement; //# sourceMappingURL=EditButton.d.ts.map