/// <reference types="react" />
interface DecorationTextBackgroundProps {
    text: string;
    /**
     * Number between 0 and 1 to set the opacity of the text
     * @default 0.1
     */
    strength?: number;
}
export declare const DecorationTextBackground: React.FC<DecorationTextBackgroundProps>;
export {};
