/** Makes sure input is an array, if not it turns into an array (empty array if input is null or undefined) */ export declare function asArray(raw: T | Array | undefined | null): Array;