import { z } from 'zod';
/**
 * Afetacao row for GTFS v29
 * Note: afetacao is not in standard GTFS types package
 */
export declare const GtfsTMLAfetacaoSchema: z.ZodObject<{
    accepted_zone_codes: z.ZodString;
    interchange: z.ZodNumber;
    line_id: z.ZodString;
    pattern_id: z.ZodString;
    stop_id: z.ZodString;
}, "strip", z.ZodTypeAny, {
    line_id: string;
    pattern_id: string;
    stop_id: string;
    accepted_zone_codes: string;
    interchange: number;
}, {
    line_id: string;
    pattern_id: string;
    stop_id: string;
    accepted_zone_codes: string;
    interchange: number;
}>;
export type GtfsTMLAfetacao = z.infer<typeof GtfsTMLAfetacaoSchema>;
