export interface ScrollPara3DProps {
    /**
     * The text lines to reveal in 3D space.
     */
    lines: string[];
    className?: string;
    containerClassName?: string;
    textClassName?: string;
    /**
     * The perspective depth distance in pixels.
     * Less = more extreme 3D depth/stretch.
     * @default 600
     */
    perspective?: number;
    /**
     * The tilt angle of the text floor plane (rotateX degrees).
     * @default 50
     */
    angle?: number;
    /**
     * How much extra scrolling space to pin for the animation.
     * Multiplier based on content height.
     * @default 1.2
     */
    scrubSpeed?: number;
    /**
     * Font size in rem for each text line.
     * @default 3.5
     */
    fontSize?: number;
}
export declare function ScrollPara3D({ lines, className, containerClassName, textClassName, perspective, angle, scrubSpeed, fontSize, }: ScrollPara3DProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=scroll-para-3d.d.ts.map