import { LensState } from "@focuson/state";
import { FocusOnContext } from "@focuson/focuson";
export interface WithTextLayoutProps<S, C> {
    state: LensState<S, any, C>;
    children: JSX.Element | JSX.Element[];
    text: string;
    holderClassName?: string;
    textClassName?: string;
    childrenClassName?: string;
}
export declare function WithTextLayout<S, C extends FocusOnContext<S>>({ children, text, holderClassName, textClassName, childrenClassName, state }: WithTextLayoutProps<S, C>): import("react/jsx-runtime").JSX.Element;
