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