DatabaseObjectResponse: {
    archived: boolean;
    cover: null | {
        external: {
            url: string;
        };
        type: "external";
    } | {
        file: {
            expiry_time: string;
            url: string;
        };
        type: "file";
    };
    created_by: PartialUserObjectResponse;
    created_time: string;
    description: RichTextItemResponse[];
    icon:
        | null
        | {
            emoji: EmojiRequest;
            type: "emoji";
        }
        | {
            external: {
                url: string;
            };
            type: "external";
        }
        | {
            file: {
                expiry_time: string;
                url: string;
            };
            type: "file";
        };
    id: string;
    is_inline: boolean;
    last_edited_by: PartialUserObjectResponse;
    last_edited_time: string;
    object: "database";
    parent:
        | {
            database_id: string;
            type: "database_id";
        }
        | {
            page_id: string;
            type: "page_id";
        }
        | {
            block_id: string;
            type: "block_id";
        }
        | {
            type: "workspace";
            workspace: true;
        };
    properties: Record<string, DatabasePropertyConfigResponse>;
    public_url: null | string;
    title: RichTextItemResponse[];
    url: string;
}