import { AnimationProps, Transition } from "motion/react";
import { type Text as Props } from "./Text";
export interface TextMotion extends AnimationProps {
    mode?: "popLayout" | "sync" | "wait" | undefined;
    gap?: number;
    transition?: Transition;
    layoutId?: string;
    layout?: boolean | "position" | "size" | "preserve-aspect";
    fit?: boolean;
    fix?: boolean;
}
export default function TextMotion(props: Props & {
    children?: string | number | (string | number)[];
}): import("react").JSX.Element;
//# sourceMappingURL=TextMotion.d.ts.map