import jwt from 'jsonwebtoken'; import dayjs from 'dayjs'; export { G as GridPagination, b as GridPaginationDefaults, c as GridPaginationSchema, a as GridRows, d as GridRowsAsync } from './types-CQXg-o8V.js'; import 'zod'; declare class JwtDecoder { private readonly decoded; constructor(accessToken?: string); decode(): jwt.JwtPayload | null; getRealmRoles(): string[]; getClientRoles(clientId?: string): string[]; } declare class Dates { static readonly _DateFormat = "DD-MM-YYYY"; static readonly _ISO_8601_DateFormat = "YYYY-MM-DD"; static dayjsFromQueryStringDate(v: string | null): dayjs.Dayjs | null; static toQueryStringDate(v?: dayjs.Dayjs | string | null): string | null; } type HttpError = { message: string; statusCode: number; [key: string]: any; }; export { Dates, type HttpError, JwtDecoder };