/**
 * Used for dataloaders to generate an array with null entries when it couldn't be found
 */
export declare const createOptionalsArray: <Data, Attribute extends keyof Data, Key extends Data[Attribute]>(keys: Key[], data: Data[], attribute: Attribute) => Data[];
