import { ClickyCommandRuntime } from '../data/Clicky';
import { RenderLink } from './EndpointList';
import { ParameterValues } from './formMetadata';
import { ResolvedOperation } from './types';
import { OperationsApiClient } from './useOperations';
export type OperationCommandPageProps = {
    client: OperationsApiClient;
    operationId?: string;
    operation?: ResolvedOperation;
    operations?: ResolvedOperation[];
    initialValues?: ParameterValues;
    autoRun?: boolean;
    backHref?: string;
    backLabel?: string;
    renderLink?: RenderLink;
    commandRuntime?: ClickyCommandRuntime;
    onNavigate?: (href: string) => void;
    hideLockedPathFilters?: boolean;
    className?: string;
};
export declare function OperationCommandPage({ client, operationId, operation: providedOperation, operations, initialValues, autoRun, backHref, backLabel, renderLink, onNavigate, hideLockedPathFilters, className, }: OperationCommandPageProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=OperationCommandPage.d.ts.map