import { VueEmit } from '../interfaces'; import { PickerBasePropsType } from '../props'; import { ComputedRef } from 'vue'; export declare const useMonthYearPick: (props: { month: number; year: number; } & PickerBasePropsType, emit: VueEmit) => { handleMonthYearChange: (isNext: boolean, fromNav?: boolean) => void; isDisabled: ComputedRef<(next: boolean) => boolean>; updateMonthYear: (month: number, year: number, fromNav: boolean) => void; };