export declare function padWithZeroesUntilValid(segmentValue: string, paddedMaxValue: string, prefixedZeroesCount?: number): {
    prefixedZeroesCount: number;
    validatedSegmentValue: string;
};
