import { TextOverflow, type TextStyle, type EdgeInsets, BoxDecoration, TextAlign, TextWidthBasis } from "@meursyphus/flitter"; export default function Label({ text, overflow, style, margin, backgroundColor, padding, decoration, softWrap, textAlign, textWidthBasis, }: { text: string | number; overflow?: TextOverflow; style?: TextStyle; softWrap?: boolean; margin?: EdgeInsets; backgroundColor?: string; padding?: EdgeInsets; decoration?: BoxDecoration; textAlign?: TextAlign; textWidthBasis?: TextWidthBasis; }): any;