import React from "react";
import { FieldAttributes } from "formik";
export interface GovernanceDialogSelectLargeFieldProps extends FieldAttributes<any> {
    title?: string;
    options?: IGovernanceDialogSelectLargeFieldOption[];
}
export interface IGovernanceDialogSelectLargeFieldOption {
    primaryText?: string;
    secondaryText?: string;
    icon?: React.ReactNode;
    action?: React.ReactNode;
    value: any;
}
export declare const GovernanceDialogSelectLargeField: React.FC<GovernanceDialogSelectLargeFieldProps>;
//# sourceMappingURL=GovernanceDialogSelectLargeField.d.ts.map