/**
 * The message querystring interface, used for every OCPP message endpoint to validate query parameters.
 */
export interface IMessageQuerystring {
    identifier: string | string[];
    tenantId: string;
    callbackUrl?: string;
}
/**
 * This message querystring schema describes the {@link IMessageQuerystring} interface.
 */
export declare const IMessageQuerystringSchema: {
    $id: string;
    type: string;
    properties: {
        identifier: {
            anyOf: ({
                type: string;
                items?: undefined;
            } | {
                type: string;
                items: {
                    type: string;
                };
            })[];
        };
        tenantId: {
            type: string;
        };
        callbackUrl: {
            type: string;
        };
    };
    required: string[];
};
