import React, { ReactNode, RefObject, FC } from 'react';
interface ComponentProps {
    name: string;
    show: boolean;
    to: RefObject<HTMLDivElement>;
    children?: ReactNode;
    style?: React.CSSProperties;
}
export declare const Component: FC<ComponentProps>;
export {};
