export interface GetArrayLengthProps { /** The array (or string) to measure */ target: any; /** What to return if the target is invalid */ fallback?: number; } export default function GetArrayLength({ target, fallback }: GetArrayLengthProps): number;