import { getAll } from './get-all'; import { resync } from './resync'; import { update } from './update'; type ApiDeclaration = { getAll: typeof getAll; update: typeof update; resync: typeof resync; }; export declare const holidaysApiDeclaration: ApiDeclaration; export {};