export declare class DXPData { /** * The input-key to display * */ inputKey: string; /** * A default value to display if the data in get is not found. */ default?: string; /** * A pipe separated list of modifier expressions to modify the captured data. * clip: length * * truncate: length * date * format: expression * lowercase * uppercase * capitalize * size * encode * currency * display * * @example clip:5|capitalize */ modify?: string; render(): any; }