export interface GetArrayItemProps { /** The array to extract from */ array: any; /** Which item to get */ index: number | 'first' | 'last' | 'random'; /** What to return if the item doesn't exist */ fallback?: any; } export default function GetArrayItem({ array, index, fallback }: GetArrayItemProps): any;