@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
13 lines (12 loc) • 457 B
TypeScript
import React from "react";
export declare function VirtualTableUserSelect(props: {
name: string;
error: Error | undefined;
multiple: boolean;
disabled: boolean;
small: boolean;
internalValue: string | string[] | undefined;
updateValue: (newValue: (string | string[] | null)) => void;
focused: boolean;
onBlur?: React.FocusEventHandler<HTMLInputElement | HTMLTextAreaElement>;
}): import("react/jsx-runtime").JSX.Element;