/** * * Our GraphQL IDs are base64 encoded strings in the format `TypeName:123` * This function decodes the string and splits on the ":" to return the numeric id. */ export declare function decodeGraphQLId(idString: string): { typeName: string; id: number; };