import React from "react"; import { FieldAttributes } from "formik"; export interface GovernanceDialogSelectFieldProps extends FieldAttributes { title?: string; dialogTitle?: string; options?: IGovernanceDialogSelectFieldOption[]; wrapperClassName?: string; size?: "small" | "medium" | "large"; } export interface IGovernanceDialogSelectFieldOption { primaryText?: string; secondaryText?: string; icon?: React.ReactNode; action?: React.ReactNode; value: any; } export declare const GovernanceDialogSelectField: React.FC; //# sourceMappingURL=GovernanceDialogSelectField.d.ts.map