import React from 'react'; export interface CreditBarProps { /** * The text to display (e.g., "Built by StackLoop") */ text?: string; /** * Show heart emoji * @default true */ showHeart?: boolean; /** * Optional link URL */ href?: string; /** * Position of the credit bar * @default 'fixed' */ position?: 'fixed' | 'relative' | 'sticky'; /** * Background color * @default 'bg-gray-900' */ backgroundColor?: string; /** * Text color * @default 'text-gray-400' */ textColor?: string; /** * Custom className for additional styling */ className?: string; } export declare const CreditBar: React.FC;