import type { InterfaceState } from "../interface.cjs";
/**
 * The request parameters for the `snap_getInterfaceState` method.
 *
 * @property id - The interface id.
 */
export type GetInterfaceStateParams = {
    id: string;
};
/**
 * The result returned by the `snap_getInterfaceState` method, which is the state of the interface.
 */
export type GetInterfaceStateResult = InterfaceState;
//# sourceMappingURL=get-interface-state.d.cts.map