import { CustomerCardProps } from "./CustomerCard/index.js"; import { PopoverProps } from "antd"; //#region src/components/pisellSelectCustomerModal/index.d.ts type CustomerDetail = any; interface PisellSelectCustomerModalProps { value?: CustomerDetail; onChange: (e: CustomerDetail) => void; popoverProps: PopoverProps; cardProps?: CustomerCardProps; virtualKeyboardProps?: any; keyboardProps?: any; virtualKeyInputProps?: any; } declare const PisellSelectCustomerModal: (props: PisellSelectCustomerModalProps) => JSX.Element; //#endregion export { PisellSelectCustomerModal };