import * as React from 'react'; import { SVGProps } from 'react'; type IconProps = SVGProps; declare function IconFacebook(props: IconProps): React.JSX.Element; declare function IconX(props: IconProps): React.JSX.Element; declare function IconYouTube(props: IconProps): React.JSX.Element; declare function IconLinkedIn(props: IconProps): React.JSX.Element; declare function IconInstagram(props: IconProps): React.JSX.Element; declare function IconGitHub(props: IconProps): React.JSX.Element; export { IconFacebook, IconGitHub, IconInstagram, IconLinkedIn, IconX, IconYouTube };