import React from "react"; import "./index.less"; import { BaseResponsiveProps } from "../../../../responsive/type"; export interface InfoProps { title?: string; describe?: string; notes: any[]; onChange?: (value: any, type: "edit" | "add" | "remove", noteType: string) => void; apis?: any; bookingId?: any; loading?: boolean; isEdit?: boolean; placeholder?: string; maxLength?: number; noteType: string; } declare const _default: React.ForwardRefExoticComponent>; export default _default;