import { create } from './create'; import { remove } from './remove'; type ApiDeclaration = { create: typeof create; remove: typeof remove; }; export declare const orderCertificatesApiDeclaration: ApiDeclaration; export {};