import { status } from '@synnaxlabs/client'; import { ReactElement } from 'react'; import { Text as BaseText } from '../../text'; /** Props for {@link Summary}. Pass a whole `status`, or its parts one by one. */ export interface SummaryProps extends Omit, Partial> { hideIcon?: boolean; status?: status.Status; } /** * Renders a status as an {@link Indicator}, its message, and its description. Use it * wherever an error or a result has to read inline. */ export declare const Summary: ({ level, variant, description, hideIcon, status, className, children, message, color, ...rest }: SummaryProps) => ReactElement; //# sourceMappingURL=Summary.d.ts.map