import React from "react"; export type BaseOptionType = { id?: number; label: string; value: string | number; }; type OptionsProps = { options: BaseOptionType[]; formatOptionLabel?: (data: BaseOptionType) => JSX.Element | string; menuWidth?: string; }; declare const Options: ({ options, formatOptionLabel, menuWidth }: OptionsProps) => React.JSX.Element; export default Options; //# sourceMappingURL=Options.d.ts.map