/// export declare type FieldInstructionsProps = { /** * Label to be shown */ label: string; /** * Text to be shown */ description: string; /** * Placement of field instructions are similar to positions of the tooltip * Default is top-end */ position?: 'top-start' | 'top' | 'top-end' | 'left' | 'right' | 'bottom-start' | 'bottom' | 'bottom-end'; /** * Handle open/close state. Current usage is closing instructions onBlur for TextField. * Want open/close on hovering? See Tooltip component */ open?: boolean; setOpen?: (open: boolean) => void; }; export declare const FieldInstructions: (props: FieldInstructionsProps) => JSX.Element;