UNPKG

gather-content-ui

Version:
16 lines 606 B
import { HTMLAttributes, ReactNode } from "react"; interface Props extends HTMLAttributes<HTMLDivElement> { instructions?: string | ReactNode; editable?: boolean; } declare function ColFieldInstructions({ instructions, className, editable, onChange, placeholder, ...props }: Props): import("react/jsx-runtime").JSX.Element; declare namespace ColFieldInstructions { var defaultProps: { className: string; editable: boolean; onChange: () => void; placeholder: string; }; } export default ColFieldInstructions; //# sourceMappingURL=ColFieldInstructions.d.ts.map