import React from 'react'; import { BaseOptionType } from 'antd/lib/select'; import { Control } from 'react-hook-form'; export declare enum CURRENCY { AED = "AED", USD = "$", EUR = "\u20AC", GBP = "\u00A3", OMR = "OMR", SAR = "SAR", QAR = "QAR", CAD = "$" } export interface PlanSelectProps extends Pick { options: { value: string; label: string; count: number; per: string; }[]; totalPrice: number; errorMsg?: string; control: Control; name: string; label?: string; previewText?: string; currency: keyof typeof CURRENCY; maxCount?: number; cy?: { select?: string; option?: string; message?: string; }; } declare const PlanSelect: React.FC; export default PlanSelect;