/** * Creates a style query for a Component. This namespace can be added to any * React component, allowing it to be targeted for custom style via * ui.$().css(). * * @example * ```jsx * // Declaring a namespace for a component * * ``` * * @example * ```jsx * // Targeting a namespaced component for styling * * * * ``` * * @param {string} ComponentName The namespace of the component * @returns {StyleQuery} The StyleQuery instance. */ export function $(ComponentName: string): StyleQuery; /** * An experimental preset that allows for custom styling of components. * This is achieved by leveraging the namespacing system. The provided * css() method (which is the same as the one used in the style system) * targets the namespace, adding the CSS rules to that selector. * * @example * ```jsx * *