/// import { SelectProps } from "antd/lib/select"; export interface User { id: string | null; email: string | null; displayName: string | null; } export declare function UserSelect({ disabled, name, fetcher, setByReference, ...restProps }: { disabled?: boolean; name: string; setByReference?: boolean; fetcher: (search: string) => Promise; } & SelectProps): JSX.Element; //# sourceMappingURL=user-select.d.ts.map