import { Theme, Size, ThemeColor, Profile } from './types'; export declare const backgroundColorMap: Record; export declare const foregroundColorMap: Record; export declare const dimensionsMap: Record>; export declare function getContainerStyle(theme: Theme, size: Size): { backgroundColor: ThemeColor; padding: string; outline: string; border: string; borderRadius: number; display: string; alignItems: string; cursor: string; }; export declare function getTextStyle(theme: Theme, size: Size): { color: ThemeColor; fontSize: string; margin: string; padding: number; fontFamily: string; }; export declare function returnIpfsPathOrUrl(uri: string, ipfsGateway?: string): string; export declare function formatProfilePictures(profiles: Profile[]): Profile[]; export declare function formatProfilePicture(profile: Profile): Profile; export declare function configureMirrorAndIpfsUrl(items: any[]): any[]; export declare const systemFonts = "-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";"; export declare function getRandomColor(): string; export declare function getSubstring(string: any, length?: number): any; export declare function formatHandleColors(text: string): string; export declare function formatHandleList(handles: any): any;