type BrandingProps = { logoType?: "wordmark" | "lettermark"; logoColor?: "blue" | "white"; size?: "small" | "medium" | "large"; alignment?: "left" | "center" | "right"; withLine?: boolean; subtext?: string; className?: string; }; declare const Branding: ({ logoType, subtext, size, alignment, withLine, logoColor, className, ...props }: BrandingProps) => import("react/jsx-runtime").JSX.Element; export default Branding;