import { Root } from 'postcss'; import { Length, type RawValue } from './css'; import type { Context } from './context'; export declare const generate: (_start: RawValue | Length, _end: RawValue | Length, context: Context, { startBP: _startBP, endBP: _endBP, atContainer, type, final, negate }?: { startBP?: RawValue | Length; endBP?: RawValue | Length; atContainer?: string | true | undefined; type?: boolean; final?: boolean; negate?: boolean; }) => string; export declare const rewrite: (container: Root, context: Context, [startBP, endBP]: [Length | RawValue, Length | RawValue], atContainer?: string | true) => void;