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