import { IComponentProps, IComponentStyle } from "./common"; import { AlignType, Vec4 } from "ave-ui"; export interface ILabelComponentProps extends IComponentProps { text?: string; style?: ILabelStyle; } export interface ILabelStyle extends IComponentStyle { backgroundColor?: Vec4; color?: Vec4; horizontalAlign?: AlignType; } export declare const Label: import("./common").ReactAveTag;