import { T_SortType, T_PaginationKeys } from 'src/common/backend/parameters';
import { T_Months } from 'src/common/client/types';
export type T_SearchTypeQueryParams = 'name' | 'type' | 'internalName' | 'all';
export type T_MenuQueryParams = {
    search_key?: string;
    sort_type?: T_SortType;
    search_type?: T_SearchTypeQueryParams;
    month?: T_Months;
    branch?: string;
    company?: string;
    branches?: string;
    brandId?: string;
    isMaster?: 'yes' | 'no';
} & T_PaginationKeys;
//# sourceMappingURL=index.d.ts.map