import type { IRecord } from '../table/types';
export declare const stringify: (string: any, separator?: string) => any;
export declare const array_format: (array: any) => string;
export declare const isBracketBalance: (str: any) => boolean;
export declare const where: <T extends IRecord<any>>(array: T[], query: string, isTree?: boolean) => T[];
