import { colors } from './colors'; import { create } from './create'; import { getAll } from './get-all'; import { getInitial } from './get-initial'; import { getVerificationLink } from './get-verification-link'; import { remove } from './remove'; import { update } from './update'; type ApiDeclaration = { create: typeof create; update: typeof update; getAll: typeof getAll; getInitial: typeof getInitial; colors: typeof colors; remove: typeof remove; getVerificationLink: typeof getVerificationLink; }; export declare const googleCalendarsApiDeclaration: ApiDeclaration; export {};