import type * as CSS from 'csstype'; import type { ResponsiveValue } from './responsiveValue'; export interface customOutlineProps { /** * The CSS `outline` property */ outline?: ResponsiveValue>; /** * The CSS `outline-offset` property */ outlineOffset?: ResponsiveValue>; /** * The CSS `outline-color` property */ outlineColor?: ResponsiveValue; /** * The CSS `outline-width` property */ outlineWidth?: ResponsiveValue>; /** * The CSS `outline-style` property */ outlineStyle?: ResponsiveValue; } export declare const customOutline: import("styled-system").styleFn;