export interface ArrayRepeat { value: V; repeat?: number; } /** * Return an array of the `$arr.value` repeated * by the `$arr.repeat`. */ export declare function RepeatArrayValues($arr: ArrayRepeat[], $default?: number): V[];