/// <reference types="react" />
export type TRulesElementProps = {
    text: string;
    color: string;
    disabled?: boolean;
    children: React.ReactNode;
    onClick: () => void;
};
export declare function Rule({ children, text, color, onClick, disabled }: TRulesElementProps): React.ReactElement;
