export declare type Option = { id: string; label: string; disabled?: boolean; }; declare type GetMonthItemsArgs = { filterMonthsList: number[] | null; formatMonthLabel: (a: number) => string; }; export declare const filterMonthItems: (monthItems: Option[], filterList: number[]) => Option[]; export declare const getFilteredMonthItems: ({ filterMonthsList, formatMonthLabel, }: GetMonthItemsArgs) => Option[]; export {};