export declare class PosCertifiedDevice {
    id: number;
    model: string;
    manufacturer: string;
    platform: string;
    os_min_version: string;
    os_max_version: string;
    supported_features: string[];
    supported_peripherals: string[];
    is_active: boolean;
    notes: string;
    created_at: Date;
    updated_at: Date;
}
