import { RequiredPropGetter, HTMLProps, PropGetter } from '@yamada-ui/core';

declare const useMonthList: () => {
    label: string;
    rangeMonths: string[];
    getButtonProps: RequiredPropGetter<{
        value: number;
    } & HTMLProps<"button">, HTMLProps<"button">>;
    getGridProps: PropGetter<"div", undefined>;
};
type UseMonthListReturn = ReturnType<typeof useMonthList>;

export { type UseMonthListReturn, useMonthList };
