import { PropsWithChildren, ReactElement } from 'react'; import { z } from 'zod'; import { control } from './aether'; export interface IndicatorProps extends Omit, "status" | "color">, PropsWithChildren { } export interface StatusDetails { color?: string; } export declare const Indicator: ({ colorSource, statusSource, }: IndicatorProps) => ReactElement; //# sourceMappingURL=Indicator.d.ts.map