import React from "react";
import { FieldAttributes } from "formik";
export interface GovernanceLargeFieldProps extends FieldAttributes<any> {
    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<GovernanceLargeFieldProps>;
//# sourceMappingURL=GovernanceLargeField.d.ts.map