declare type State = 'queued' | 'pinned' | 'unpinned' | 'failed' | 'gc';
export declare type AddResponse = {
    name: string;
    ipfs_hash: string;
    size: number;
};
export declare type PinResponse = {
    ipfs_hash: string;
    state: State;
};
export declare type ListResponse = {
    time_created: number;
    time_pinned: number;
    ipfs_hash: string;
    size: string;
    state: State;
};
export {};
