import { Declaration } from 'postcss';
/**
 * Extended Declaration functions for scroll-related logical properties
 * These follow the same pattern as postcss-logical's Declaration functions
 */
export declare const SHIM_DECLARATIONS: Record<string, (decl: Declaration, { inlineDirection }: {
    inlineDirection: 'left-to-right' | 'right-to-left';
}) => void>;
/**
 * Extend postcss-logical processors with our shim declarations
 */
export declare function extendProcessors(processors: any): void;
