import * as React from "react"; import type { SizeProp } from "../../props/vocabulary/index.js"; export type { ActivityProp, ActivityProp as ActivityProps, } from "../../props/components/general.prop.js"; /** * Activity — the official AMBIENT-motion primitive: a continuous, unbounded "something is * happening right now, elsewhere". Every interval, stagger, offset, size and colour reads a DS * token (`--activity-interval`, `--activity-stagger-step`, `--activity-mark-offset`, * `--activity-color`, …), so a service retunes the whole ambient feel from its theme. */ export declare const Activity: React.ForwardRefExoticComponent, "color"> & { variant?: import("../../props/index.js").ActivityVariantProp; size?: SizeProp; tone?: import("../../props/index.js").TextToneProp; label?: import("../../props/index.js").LabelProp; children?: import("../../props/index.js").ChildrenProp; announce?: import("../../props/index.js").ActivityAnnounceProp; className?: import("../../props/index.js").ClassNameProp; } & React.RefAttributes>;