import { OutlineProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface OutlineProps { /** * The **`outline`** CSS property is a shorthand to set various outline properties in a single declaration: `outline-style`, `outline-width`, and `outline-color`. * * @see https://developer.mozilla.org/docs/Web/CSS/outline */ style$Outline: T; } export declare const outline: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;