import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { IParkomatDto } from "./interfaces/IParkomatDto";
export declare class ParkomatDto extends Model<IParkomatDto> implements IParkomatDto {
    channel: string;
    parking_zone: string;
    price: number;
    ticket_bought: string | null;
    transaction_id: string;
    validity_from: string | null;
    validity_to: string | null;
    static attributeModel: ModelAttributes<ParkomatDto>;
    static jsonSchema: JSONSchemaType<IParkomatDto[]>;
}
