type ApplicationItem = {
    [key: string]: any;
};
interface GetApplicationListParams {
    start?: number;
    limit: number;
    tag: string;
    searchtext?: string;
    searchfields?: string[];
    filters?: Record<string, string>;
}
export declare const getApplicationList: (params: GetApplicationListParams) => ApplicationItem[];
export declare const getApplicationByTrackNo: (trackno: string) => ApplicationItem | undefined;
export {};
