import React from 'react'; export interface LabelProps extends React.LabelHTMLAttributes { /** * An optional className to render on the label node. */ readonly className?: string; /** * The children to render within the label node. */ readonly children?: React.ReactNode; /** * An optional css theme to be injected. */ readonly theme?: { readonly label: string; }; } declare const Label: React.SFC; export default Label;