export interface PoweredByBadgeProps { position?: "bottom-right" | "bottom-left"; /** Plain shows the logo only with no surrounding badge chrome. */ variant?: "badge" | "plain"; /** When true, positioning is handled by the parent container. */ embedded?: boolean; } export interface OpenSourceBadgeProps { position?: "bottom-left" | "bottom-right"; /** When true, positioning is handled by the parent container. */ embedded?: boolean; } /** * Small branding badge: "Built with [Agent Native logo]" * * - Fixed position in the corner * - Subtle, semi-transparent * - Links to https://agent-native.com * - Respects prefers-color-scheme * - Can be hidden via HIDE_BRANDING=true env var (for white-label) */ export declare function PoweredByBadge({ position, variant, embedded, }: PoweredByBadgeProps): import("react").JSX.Element | null; /** * Small badge: "Free and open source" * * Intended to pair with PoweredByBadge on public pages. */ export declare function OpenSourceBadge({ position, embedded, }: OpenSourceBadgeProps): import("react").JSX.Element | null; //# sourceMappingURL=PoweredByBadge.d.ts.map