import React, { ReactNode } from 'react'; import { Props as StyleProps } from './LabelStyle'; declare type Props = { label: ReactNode; noActiveState?: boolean; } & StyleProps; declare const Label: React.FC>; export default Label; //# sourceMappingURL=Label.d.ts.map