import { ReactNode, ComponentProps } from 'react';
export interface StatusProps extends ComponentProps<'dd'> {
    label?: ReactNode;
    isHiddenLabel?: boolean;
    isSuccess?: boolean;
    isCaution?: boolean;
    isDanger?: boolean;
}
export declare const Status: ({ label, children, isSuccess, isCaution, isDanger, isHiddenLabel }: StatusProps) => JSX.Element;
