import { default as React } from 'react';

declare const ScreenReaderLabelComponent: {
    ({ children, labelId, labelText, }: {
        children: JSX.Element | string;
        labelId: string;
        labelText?: string;
    }): React.JSX.Element;
    defaultProps: {
        labelText: any;
    };
};
export { ScreenReaderLabelComponent };
