import React, { Component } from 'react'; import './InstructionText.css'; export type InstructionTextProps = { /** * Pass the class names to be appended to this prop */ className?: string; /** * Pass an ID that you can use for testing purposes. It is applied as a data attribute (data-test-id) */ testId?: string; /** * Add the styles that can be added directly to the component */ style?: React.CSSProperties; /** * Add child elements defined within a component */ children?: React.ReactNode; /** * Disables instruction text */ disabled?: boolean; }; export declare class InstructionText extends Component { render(): React.JSX.Element; } export default InstructionText;