export declare type StatusChipSize = "md" | "lg";
export interface StatusChipProps {
    children?: null;
    className?: string;
    label: string;
    size?: StatusChipSize;
    variant: "success" | "warning" | "neutral" | "error";
}
