export declare namespace CollectionContracts {
    interface ICollectionContract {
        id: string;
        name: string;
        codename: string;
    }
    interface ICollectionListResponseContract {
        collections: ICollectionContract[];
        last_modified?: string;
    }
    interface ISetCollectionsResponseContract {
        collections: ICollectionContract[];
        last_modified?: string;
    }
}
