openrouter-model-picker
Version:
Third-party React component for OpenRouter model selection
15 lines • 584 B
TypeScript
interface LoadingStateProps {
message?: string;
}
export declare function LoadingState({ message }: LoadingStateProps): import("react/jsx-runtime").JSX.Element;
interface ErrorStateProps {
error: string;
onRetry?: () => void;
}
export declare function ErrorState({ error, onRetry }: ErrorStateProps): import("react/jsx-runtime").JSX.Element;
interface EmptyStateProps {
onClearFilters?: () => void;
}
export declare function EmptyState({ onClearFilters }: EmptyStateProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=LoadingState.d.ts.map