import React from 'react'; type GuildBannerProps = { patternId: number; highlightColorId: number; baseColorId: number; logo: string; } & React.SVGAttributes; export declare function GuildBanner(props: GuildBannerProps): JSX.Element; export {};