export declare class PosPaymentProvider {
    id: number;
    code: string;
    name: string;
    provider_type: string;
    integration_type: string;
    supports_webhook: number;
    supports_reconcile: number;
    status: string;
    settings_schema_json: Record<string, unknown> | null;
    created_at: Date;
    updated_at: Date;
}
