import React from "react";
interface StickyProps {
    children: React.ReactNode;
    top?: string;
    bottom?: string;
    zIndex?: number;
    responsive?: boolean;
}
export declare const Sticky: React.FC<StickyProps>;
export {};
