/** * Represents Shake form component. */ class ShakeFormComponent { type: string; constructor(type: string) { this.type = type; } } export default ShakeFormComponent;