import { create } from './create'; import { getOne } from './get-one'; import { query } from './query'; import { remove } from './remove'; type ApiDeclaration = { create: typeof create; remove: typeof remove; query: typeof query; getOne: typeof getOne; }; export declare const userMessagesApiDeclaration: ApiDeclaration; export {};