export declare function compilerStr(str?: string, data?: Record<string, any> | null, delimiters?: [string, string]): any;
export declare type SchemaType = Record<string, any> | ((data: any) => any) | string | null | undefined;
export interface DataMappingOptions {
    schema: SchemaType;
    data?: Record<string, any> | null;
    delimiters?: [string, string];
    defaultValue?: 'schema' | 'data' | 'schema-data';
}
export declare function dataMapping({ schema, data, delimiters, defaultValue }: DataMappingOptions): any;
