import { Ref } from 'vue'; export declare function useMonthGrid(monthSelector: Ref, initialMonth?: number): { activeMonth: Ref; selectMonth: (month: number) => void; selectNextMonth: () => void; selectPreviousMonth: () => void; selectNextRow: () => void; selectPreviousRow: () => void; };