import { ComponentChildren } from 'preact'; export type TextProps = { align?: TextAlignment; children: ComponentChildren; numeric?: boolean; }; export type TextAlignment = 'left' | 'center' | 'right'; export declare const Text: import("preact").FunctionalComponent, "ref"> & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=text.d.ts.map