UNPKG

@amsterdam/bmi-component-library

Version:

A React component library based on ASC and Material-UI aimed at repurposing and sharing components across BMI projects

11 lines 463 B
import type { ComponentProps, FC } from 'react'; import ReactSelect, { DropdownIndicatorProps } from 'react-select'; export type Props = { error?: boolean; zIndexMenu?: number; maxWidth?: string; } & ComponentProps<typeof ReactSelect>; export declare const DropdownIndicator: (props: DropdownIndicatorProps) => import("react/jsx-runtime").JSX.Element; export declare const Select: FC<Props>; export default Select; //# sourceMappingURL=Select.d.ts.map