import { ReactNode } from 'react'; export interface BrandLoaderProps { /** Mark width in px — height follows the logo's 343:412 ratio. Default 132. */ width?: number; /** Center the mark in a full-area flex container, for Suspense fallbacks. */ fullPage?: boolean; /** Disable the animation (static original logo). Default true (animated). */ animated?: boolean; /** * Accessible status label. Defaults to the package's own translation of * "Yükleniyor", so an English UI announces "Loading" without the consumer * having to pass anything. */ label?: string; /** Optional visible caption rendered under the mark (full-page contexts). */ caption?: ReactNode; /** Extra classes for the full-page wrapper. */ className?: string; } export declare function BrandLoader({ width, fullPage, animated, label, caption, className, }: BrandLoaderProps): import("react").JSX.Element; export declare namespace BrandLoader { var displayName: string; } //# sourceMappingURL=BrandLoader.d.ts.map