export declare enum COMPONENT_STATUS { BETA = "beta", DOCUMENTATION_PENDING = "documentation-pending", A11Y_VIOLATION_COLOR_CONTRAST = "a11y-violation-color-contrast" } export interface ComponentStatusProps { status?: COMPONENT_STATUS; } export declare const ComponentStatus: ({ status }: ComponentStatusProps) => JSX.Element | null;