import type { ReactNode } from 'react'; import React from 'react'; interface DisplayInstructionsProps { id?: string; readOnly: boolean; children?: ReactNode; } declare const DisplayInstructions: React.NamedExoticComponent; export default DisplayInstructions;