///
import { CSSObject } from '@chakra-ui/react';
export interface LabelProps {
children: React.ReactNode;
bg?: string;
color?: string;
size?: 'md' | 'sm';
m?: string;
sx?: CSSObject;
}
/**
* Componente Label
* @example
*/
export declare function Label({ children, bg, color, size, m, sx, }: LabelProps): JSX.Element;
//# sourceMappingURL=Label.d.ts.map