/// <reference types="react" />
export declare function Anchor({ active, children, styleAnchor, styleChild, zIndex, }: {
    active: any;
    children: any;
    styleAnchor: any;
    styleChild: any;
    zIndex: any;
}): JSX.Element;
export declare function useAnchor(ref: any, attach: any, active?: boolean): {
    active: boolean;
    styleAnchor: any;
    styleChild: any;
};
