import { StyleOptions } from '../../types'; export interface OutlineWidthProps { /** * The **`outline-width`** CSS property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`. * * @see https://developer.mozilla.org/docs/Web/CSS/outline-width */ style$OutlineWidth: T; } export declare const outlineWidth: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;