import { DateToShowProps } from "../components/Calendars/FocusCalendar"; export interface FunctionObjectProps { [key: string]: Function; } interface IncrementProps { p: string; date: DateToShowProps; } export declare const formatDateToString: (date: Date) => string; export declare const fillDaysArray: (arr: Array) => void; export declare const incrementPeriod: ({ p, date }: IncrementProps) => { start: any; end: any; }; export declare const decrementPeriod: ({ p, date }: IncrementProps) => { start: any; end: any; }; export declare const hexToRgb: (hex: string) => { normal: string; hover: string; }; export {};