/// <reference types="react" />
export interface InfoTextProps extends React.HTMLAttributes<HTMLElement> {
    passProps?: object;
    /** Support @testing-library/react `screen.getByTestId` */
    'data-testid'?: string;
    text: string | React.ReactNode;
}
