import { ListStyleProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ListStyleProps { /** * The **`list-style`** CSS property is a shorthand to set list style properties `list-style-type`, `list-style-image`, and `list-style-position`. * * @see https://developer.mozilla.org/docs/Web/CSS/list-style */ style$ListStyle: T; } export declare const listStyle: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;