import { CounterIncrementProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface CounterIncrementProps { /** * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value. * * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment */ style$CounterIncrement: T; } export declare const counterIncrement: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;