import { OCPP2_0_1 } from '@citrineos/base';
export interface VariableAttributeQuerystring {
    stationId: string;
    type?: OCPP2_0_1.AttributeEnumType;
    value?: string;
    status?: OCPP2_0_1.SetVariableStatusEnumType;
    component_evse_id?: number;
    component_evse_connectorId?: number | null;
    component_name?: string;
    component_instance?: string | null;
    variable_name?: string;
    variable_instance?: string | null;
}
export declare const VariableAttributeQuerySchema: object;
export interface CreateOrUpdateVariableAttributeQuerystring {
    stationId: string;
    setOnCharger?: boolean;
}
export declare const CreateOrUpdateVariableAttributeQuerySchema: object;
