@helpwave/hightide
Version:
helpwave's component and theming library
16 lines (13 loc) • 669 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
type YearMonthPickerProps = {
displayedYearMonth?: Date;
start?: Date;
end?: Date;
onChange?: (date: Date) => void;
className?: string;
maxHeight?: number;
showValueOpen?: boolean;
};
declare const YearMonthPicker: ({ displayedYearMonth, start, end, onChange, className, maxHeight, showValueOpen }: YearMonthPickerProps) => react_jsx_runtime.JSX.Element;
declare const YearMonthPickerUncontrolled: ({ displayedYearMonth, onChange, ...props }: YearMonthPickerProps) => react_jsx_runtime.JSX.Element;
export { YearMonthPicker, type YearMonthPickerProps, YearMonthPickerUncontrolled };