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