import { getFull } from './get-full'; import { list } from './list'; import { remove } from './remove'; import { updateComment } from './update-comment'; type ApiDeclaration = { list: typeof list; getFull: typeof getFull; updateComment: typeof updateComment; remove: typeof remove; }; export declare const widgetSessionsApiDeclaration: ApiDeclaration; export {};