import { gql } from '@apollo/client'; export interface StorageFolder { id: string; name: string; path: string; parentId?: string | null; } interface Props { workspaceId: string; value: StorageFolder | null; onChange: (folder: StorageFolder | null) => void; /** Customise GraphQL operation names if your gateway uses different ones. */ operations?: { list?: ReturnType; create?: ReturnType; }; /** Optional starting parent folder ID. */ initialParentId?: string; disabled?: boolean; } export declare function StorageFolderPicker({ workspaceId, value, onChange, operations, initialParentId, disabled, }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=StorageFolderPicker.d.ts.map