import type { Hex } from "viem"; import type { TraceFrame } from "../types.js"; /** * Return all frames whose calldata begins with the given 4-byte function * selector. Selector may be passed with or without the leading `0x`. * Comparison is case-insensitive. */ export declare function filterBySelector(root: TraceFrame, selector: Hex | string): TraceFrame[]; //# sourceMappingURL=filterBySelector.d.ts.map