import type { CustomQuery, ListItem } from './types';
export interface CustomData {
    anime?: CollectionData;
    game?: CollectionData;
    book?: CollectionData;
}
/**
 * 以动画为例： want 想看， doing 在看， done 看过
 */
export interface CollectionData {
    want?: ListItem[];
    doing?: ListItem[];
    done?: ListItem[];
}
export declare function customHandler(params: CustomQuery, customData: CustomData): Response;
