/// import { ViewType } from "@easyv/dtable-types/output/View"; interface Props { className?: string; allowClear?: boolean; onChange: (id: string) => void; value?: string; tableId?: string; viewType?: ViewType[]; } export default function ViewSelecter({ value, allowClear, onChange, viewType, className, tableId, }: Props & ClassNameAndStyle): JSX.Element; export {};