interface Connection { edges: ReadonlyArray<{ node: T; }>; } /** * Flattens a Relay connection with edges and nodes into a single readonly array that is * more useful for rendering * * @param connection the connection to flatten * @param reversed whether or not to reverse the array * @returns the flattened arry */ export declare function flattenConnection(connection: Connection | null | undefined, reversed?: boolean): ReadonlyArray; export {};