import { status } from '@synnaxlabs/client'; import { CSSProperties, ReactElement } from 'react'; import { z } from 'zod'; import { Button } from '../../button'; import { Icon } from '../../icon'; import { control } from './aether'; export interface ChipProps extends Pick, "source" | "sink">, Omit { } interface ChipStyle { message: string; chipColor: string; chipIcon: Icon.FC; buttonStyle?: CSSProperties; disabled?: boolean; } export declare const tooltipMessage: (status: status.Status) => ChipStyle; export declare const Chip: ({ source, sink, className, ...rest }: ChipProps) => ReactElement; export {}; //# sourceMappingURL=Chip.d.ts.map