import { OutlineStylePropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface OutlineStyleProps { /** * The **`outline-style`** CSS property sets the style 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-style */ style$OutlineStyle: T; } export declare const outlineStyle: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;