import React from "react"; import { MonthPickerProps } from "../MonthPicker.types"; export interface MonthPickerStandaloneProps extends Omit { /** * Monthpicker classname */ className?: string; } export type MonthPickerStandaloneType = React.ForwardRefExoticComponent>; export declare const MonthPickerStandalone: React.ForwardRefExoticComponent>;