export declare class PosSelfCheckoutStation {
    id: number;
    store_id: number;
    register_id: number;
    station_code: string;
    name: string;
    device_id: number;
    status: string;
    supports_cash: number;
    supports_card: number;
    supports_qr_payment: number;
    supports_receipt_print: number;
    created_at: Date;
    updated_at: Date;
}
