/**
 * The type of the 'children' field in the responses.
 *
 * @author Tiago Grosso <tiagogrosso99@gmail.com>
 * @since 0.5.0
 */
export type Children = {
    data: InnerId[];
};
export type InnerId = {
    id: string;
};
