import { Table } from "../types"; import { ICharacter } from "../types/_character"; import { INumeric } from "../types/_numeric"; export interface IDescribeOptions { field: any; type?: ICharacter; length?: INumeric; decimals?: INumeric; lines?: INumeric; table?: Table; mode?: "BYTE" | "CHARACTER"; } export declare function describe(input: IDescribeOptions): void;