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