import React from 'react';
import { IPageControlAutomateControlled } from './types/pageControlAutomate';
declare const PageControlAutomateBoundary: <V extends string | unknown>(props: IPageControlAutomateControlled<V>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element;
declare const PageControlAutomateControlled: <V extends string | unknown>(props: React.PropsWithChildren<IPageControlAutomateControlled<V>> & {
    ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => ReturnType<typeof PageControlAutomateBoundary>;
export { PageControlAutomateControlled };
