/** * Apply the `focusRing` token as the `box-shadow` value for any element when focused */ declare const focusRing: { readonly light: { /** * Use the default focus ring for any clickable element */ readonly default: "0 0 0 2px #FFFFFF, 0 0 0 4px #016BF8"; /** * Use the `input` focus ring for elements that have a cursor */ readonly input: "0 0 0 3px #016BF8"; }; readonly dark: { /** * Use the default focus ring for any clickable element */ readonly default: "0 0 0 2px #001E2B, 0 0 0 4px #0498EC"; /** * Use the `input` focus ring for elements that have a cursor */ readonly input: "0 0 0 3px #0498EC"; }; }; export default focusRing; //# sourceMappingURL=focusRing.d.ts.map