import { StorageCatalogOption } from './types.js'; interface StorageCatalogSelectProps { isDisabled?: boolean; label?: string; onChange: (value: string) => void; options: readonly StorageCatalogOption[]; value: string; } export declare function StorageCatalogSelect({ isDisabled, label, onChange, options, value }: StorageCatalogSelectProps): import("react").JSX.Element; export {};