import { ICharacter } from "./types/_character";
import { INumeric } from "./types/_numeric";
type options = {
    timestamp?: string;
    date?: string;
    time?: string;
    pad?: string;
    width?: number;
    decimals?: number;
    currency?: any;
    style?: any;
    alpha?: "out" | "in";
    alphaInContext?: any;
    align?: "left" | "right";
};
export declare function templateFormatting(source: ICharacter | INumeric, options?: options): string;
export {};
