export interface StagedPhoto { id: string; blob: Blob; previewUrl: string; } export interface PhotoRoll { photos: StagedPhoto[]; add: (blobs: Blob[]) => number; remove: (id: string) => void; clear: () => void; count: number; max: number; atLimit: boolean; } export declare const usePhotoRoll: (max: number) => PhotoRoll; //# sourceMappingURL=usePhotoRoll.d.ts.map