type Config = { color: string; name: string; path: string; url: string; }; declare const facebook: Config; declare const hackernews: Config; declare const linkedin: Config; declare const reddit: Config; declare const twitter: Config; declare function getUrl(url: string, params?: Record): string; type StylingProps = { color?: string | undefined; iconColor?: string | undefined; borderRadius?: number | undefined; round?: boolean | undefined; size?: number | undefined; }; export { type Config, type StylingProps, facebook, getUrl, hackernews, linkedin, reddit, twitter };