import { As, NordstarColor, InternalForwardRefRenderFunction } from '../../../core/system'; import { ReactNode } from 'react'; export type LabelProps = { as?: As; color?: NordstarColor; children?: ReactNode; }; declare const Label: InternalForwardRefRenderFunction<"label", LabelProps, never>; export default Label; //# sourceMappingURL=label.d.ts.map