import { ABAPObject, DataReference, FieldSymbol, Structure, Table } from "../types";
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
type PointerType = INumeric | Table | ICharacter | ABAPObject | undefined | Structure | FieldSymbol;
export interface ICreateDataOptions {
    table?: boolean;
    name?: string;
    type?: PointerType;
    typeName?: string;
    length?: INumeric;
    decimals?: INumeric;
    likeLineOf?: FieldSymbol | Table;
    typeLineOf?: boolean;
    refTo?: boolean;
    like?: any;
}
export declare function createData(target: DataReference | FieldSymbol, options?: ICreateDataOptions): void;
export {};
