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