import { Attributes } from '../../types'; /** * Build a new Resource Object * * @param type * @param attributes * @param id */ export declare const buildResourceObject: (type: string, attributes: Attributes, id?: string | undefined) => { attributes: Attributes; id: string | undefined; type: string; }; /** * Return the `type` of a Resource Object */ export declare const type: (obj: Record<"type", T>) => T; /** * Return the `id` of a Resource Object */ export declare const id: (obj: Record<"id", T>) => T;