import { type TextStyle, EdgeInsets, BoxDecoration } from "@meursyphus/flitter"; export declare const defaultTitleConfig: { font: { fontSize: number; }; alignment: "start"; margin: EdgeInsets; }; export default function Title({ text, style, margin, backgroundColor, padding, decoration, align, }: { text: string; style?: TextStyle; margin?: EdgeInsets; backgroundColor?: string; padding?: EdgeInsets; decoration?: BoxDecoration; align?: "start" | "center" | "end"; }): any;