/** * Base Styles Utility for Nostr Components * ========================================= * * This utility provides common base styles that can be shared across components. * It includes design tokens, common patterns, and utility functions. */ /** * Generates minimal base styles for any Nostr component * Includes only essential design tokens and base component styles * Uses generic CSS variables that can be overridden by data-theme */ export declare function getBaseStyles(): string; /** * Generates component-specific styles by combining base styles with custom styles * Uses CSS theme variables instead of theme prop */ export declare function getComponentStyles(customStyles: string): string; export declare const styleUtils: { /** * Generates error state styles */ error: () => string; /** * Generates skeleton loading styles */ skeleton: () => string; /** * Generates copy button styles */ copyButton: () => string; /** * Generates profile name styles */ profileName: () => string; /** * Generates text row styles */ textRow: () => string; /** * Generates error icon styles */ errorIcon: () => string; };