@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
12 lines (11 loc) • 600 B
TypeScript
import "../animation/cn-list.css";
import { type CalendarProps } from "../calendar";
import { type BaseFormItemType } from "../form/BaseFormItemType";
export interface DatePickerProps extends CalendarProps, BaseFormItemType {
format?: string;
}
export declare const DatePicker: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<DatePickerProps, HTMLDivElement, Date[]>>;
export declare const RangeInput: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<{
onClear?: () => void;
inputProps: any;
}, HTMLDivElement, string[]>>;