export type MockedDataResponse = { id: number; title: string; artist_title: string; }; export declare const searchMock: { matcher: { name: string; url: string; method: string; }; response: { status: number; body: { data: MockedDataResponse[]; }; }; };