import { Mutation } from "@tanstack/react-query"; interface MutationBrowserModeProps { selectedMutation: Mutation | undefined; onMutationSelect: (mutation: Mutation | undefined) => void; activeFilter: string | null; searchText?: string; } /** * Layout wrapper that renders the mutation list alongside selection handling glue logic used by * the React Query modal. */ export declare function MutationBrowserMode({ selectedMutation, onMutationSelect, activeFilter, searchText, }: MutationBrowserModeProps): import("react").JSX.Element; export {}; //# sourceMappingURL=MutationBrowserMode.d.ts.map