import { IQuery } from '../interfaces/i-query';
export declare class QueryEntity implements IQuery {
    apikey?: string | null | undefined;
    companyId?: string | null | undefined;
    containerId?: string | null | undefined;
    dateField?: string | null | undefined;
    endDate?: string | undefined;
    filterBy?: 'startDate' | 'endDate' | 'none' | undefined;
    lastDocId?: string | null | undefined;
    limit: string;
    query?: string | undefined;
    sandbox?: '' | 'undefined' | 'true' | 'false' | 'null' | undefined;
    startDate?: string | undefined;
    status?: string | undefined;
    constructor(data?: Partial<QueryEntity>);
}
