import type { FC, ReactNode, Ref } from 'react'; export interface InlineEditPreviewIconProps { ref?: Ref; /** Idle-state icon shown on hover/focus while the value is editable. Defaults to a pencil. */ children?: ReactNode; } /** * Trailing icon area of `InlineEditPreview`: while a commit is in flight it * shows a spinner, right after a successful commit a success check, and * otherwise the idle icon (only while the field is actually editable). */ export declare const InlineEditPreviewIcon: FC;