export interface Resources {
    [name: string]: {
        title: string;
        type: 'social' | 'wallet';
        icon: string;
        proofUrl: (name: string) => string;
    };
}
export declare const resources: Resources;
