/** * The class name contract for the button component */ export interface ButtonClassNameContract { /** * The root of the button component */ button?: string; /** * The disabled modifier */ button__disabled?: string; }