import { FunctionComponent } from 'react';
import { CommonProps } from '../../types';
interface SRLabelProps extends CommonProps {
    label: string;
}
declare const SRLabel: FunctionComponent<SRLabelProps>;
export default SRLabel;
