export interface TextLayoutItem {
    bbox: Array<Array<number>>;
    text: string;
}
export declare function instanceOfTextLayoutItem(value: object): value is TextLayoutItem;
export declare function TextLayoutItemFromJSON(json: any): TextLayoutItem;
export declare function TextLayoutItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): TextLayoutItem;
export declare function TextLayoutItemToJSON(json: any): TextLayoutItem;
export declare function TextLayoutItemToJSONTyped(value?: TextLayoutItem | null, ignoreDiscriminator?: boolean): any;
