import * as React from 'react'; import { type BackgroundPatternVariant } from './background-pattern-shared'; interface BackgroundPatternInteractiveProps { variant: BackgroundPatternVariant; persistent?: boolean; track?: 'self' | 'window'; } declare function BackgroundPatternInteractive({ variant, persistent: persistentProp, track, }: BackgroundPatternInteractiveProps): React.JSX.Element; export { BackgroundPatternInteractive }; //# sourceMappingURL=background-pattern-interactive.d.ts.map