import { As, NordstarColor, InternalForwardRefRenderFunction } from '../../../core/system'; export type AccentedProps = { as?: As; color?: NordstarColor; }; /** * ``, a transparent inline wrapper that highlights text with an accent color. * * @remarks * Renders with `display: contents`, so it only affects inherited properties such as * `color`. Box-level utilities (padding, background, borders) passed via `className` * have no effect unless `display` is also overridden. * * @param {object} props - `` props. * @param {As} [props.as='span'] - The element to render the component as. * @param {NordstarColor} [props.color='primary'] - The accent color; `default` inherits the surrounding color. * @returns {React.ReactNode} The `` component. */ declare const Accented: InternalForwardRefRenderFunction<"span", AccentedProps, never>; export default Accented; //# sourceMappingURL=accented.d.ts.map