export declare const sources: {
    thehackernews: {
        description: {
            url: string;
            page_selector: string;
            creator: string;
        };
        options: {
            title: {
                selectors: string[];
            };
            author: {
                selectors: string[];
            };
            pubDate: {
                selectors: string[];
            };
            description: {
                selectors: string[];
            };
        };
    };
    vcru: {
        description: {
            url: string;
            page_selector: string;
            creator: string;
        };
        options: {
            title: {
                selectors: string[];
            };
            author: {
                selectors: string[];
            };
            pubDate: {
                selectors: string[];
            };
            description: {
                selectors: string[];
            };
        };
    };
};
