import { get } from './get'; import { update } from './update'; type ApiDeclaration = { get: typeof get; update: typeof update; }; export declare const certificateSettingsApiDeclaration: ApiDeclaration; export {};