export declare class Label { color?: 'blue' | 'green' | 'red' | 'yellow' | 'purple' | 'light' | 'dark' | 'medium' | 'very-light' | 'very-dark'; size: 'x-small' | 'small' | 'medium' | 'large' | 'x-large'; weight: 'light' | 'normal' | 'semibold' | 'bold'; multiline: boolean; render(): any; }