import { StyleOptions } from '../../types'; export interface CounterResetProps { /** * The **`counter-reset`** CSS property resets a CSS counter to a given value. * * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset */ style$CounterReset: T; } export declare const counterReset: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;