import { default as React } from 'react'; export type LogoSubBrand = "docs" | "studio" | "editor" | "api"; export interface LogoProps { /** Sub-brand lockup to render alongside the primary mark. Omit for the primary "ZENDIR" lockup. */ subBrand?: LogoSubBrand; /** Render only the glyph mark (no wordmark) — for collapsed nav rails, favicons, avatar crops. */ markOnly?: boolean; /** Rendered height in pixels; width follows automatically to preserve the lockup's aspect ratio. */ height?: number; /** Ink color. Defaults to the current theme's primary text color. */ color?: string; /** Accessibility label. Defaults to "Zendir" or "Zendir ". */ "aria-label"?: string; className?: string; style?: React.CSSProperties; } export declare const Logo: React.NamedExoticComponent; export default Logo;