UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

9 lines (8 loc) 309 B
import { ViewProps } from "@vnxjs/components/types/View"; import { ReactNode } from "react"; export interface PickerColumnProps extends ViewProps { className?: string; readonly?: boolean; children?: ReactNode; } export declare function PickerColumn(props: PickerColumnProps): JSX.Element;