/** Returns the full theme + token CSS block suitable for embedding in a :host style block. */ export declare function getBaseStyles(): string; /** Focus-visible outline using the CSS custom property --bq-focus-ring. */ export declare const focusVisibleStyles = "\n :host(:focus-within) *:focus-visible,\n *:focus-visible {\n outline: 2px solid transparent;\n outline-offset: 2px;\n box-shadow: var(--bq-focus-ring, 0 0 0 3px rgba(37, 99, 235, 0.35));\n }\n"; /** Visually-hidden utility for screen-reader-only text. */ export declare const srOnlyStyles = "\n .sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n }\n"; //# sourceMappingURL=styles.d.ts.map