/** * CSS Loader for Shadow DOM injection * * This module provides the SDK's CSS as a string that can be injected * into Shadow DOM roots for complete style isolation. */ import cssString from '../lib-styles.css?inline'; /** * Get the SDK's CSS styles as a string for shadow DOM injection. * * @returns The complete CSS string for the Aria SDK * * @example * ```tsx * import { getAriaStyles } from '@centive/aria-sdk'; * * // Use with ShadowContainer * * * * ``` */ export declare function getAriaStyles(): string; /** * The raw CSS string for the Aria SDK. * Use this if you need direct access to the CSS string. */ export declare const ariaStyles: string; export default cssString; //# sourceMappingURL=cssLoader.d.ts.map