import type { BaseProps } from "@stratakit/foundations/secret-internals";
interface DotProps extends BaseProps<"span"> {
    /**
     * Children will be visually and semantically hidden, to be used
     * in conjunction with `aria-describedby`.
     */
    children: string;
}
/** @private */
export declare const Dot: import("react").ForwardRefExoticComponent<DotProps & import("react").RefAttributes<HTMLElement | HTMLSpanElement>>;
export {};
