import type { RequestHandlerOptions } from 'msw'; import { http } from 'msw'; import type { ContactsComment, ContactsCommentList } from '../_models'; export declare const getSearchCommentsResponseMock: (overrideResponse?: Partial>) => ContactsCommentList; export declare const getPublishCommentCommentsResponseMock: (overrideResponse?: Partial>) => ContactsComment; export declare const getDeleteCommentCommentsResponseMock: () => ContactsComment[]; export declare const getUpdateCommentCommentsResponseMock: (overrideResponse?: Partial>) => ContactsComment; export declare const getSearchCommentsMockHandler: (overrideResponse?: ContactsCommentList | ((info: Parameters[1]>[0]) => Promise | ContactsCommentList), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getPublishCommentCommentsMockHandler: (overrideResponse?: ContactsComment | ((info: Parameters[1]>[0]) => Promise | ContactsComment), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getDeleteCommentCommentsMockHandler: (overrideResponse?: ContactsComment[] | ((info: Parameters[1]>[0]) => Promise | ContactsComment[]), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getUpdateCommentCommentsMockHandler: (overrideResponse?: ContactsComment | ((info: Parameters[1]>[0]) => Promise | ContactsComment), options?: RequestHandlerOptions) => import("msw").HttpHandler; export declare const getCommentsMock: () => import("msw").HttpHandler[];