import React from "react"; import { FieldAttributes } from "formik"; export interface GovernanceLargeFieldProps extends FieldAttributes { title?: string; type?: "input" | "textarea" | "select"; options?: ISelectOption[]; rightContent?: React.ReactNode; focus?: boolean; } export interface ISelectOption { label: React.ReactNode; value: any; } export declare const GovernanceLargeField: React.FC; //# sourceMappingURL=GovernanceLargeField.d.ts.map