export declare const fetchShows: ({ cloudcastKeyUrl, limit, withExclusives, }: {
    cloudcastKeyUrl: string;
    limit?: number;
    withExclusives?: boolean;
}) => Promise<never[] | {
    shows: any[];
    label?: undefined;
} | {
    label: string | false;
    shows: any[];
} | undefined>;
export declare const fetchSearchResults: ({ text, limit, type, }: {
    text: string;
    limit?: number;
    type?: string;
}) => Promise<any>;
