import { ExtractState, Select } from "./public/index.js"; import { Template } from "../template.js"; export interface SelectOptions { url?: string; vars?: Record; debug?: boolean; context?: string; root?: unknown; unwrap?: boolean; } export declare function select(selects: Select[] | Template, options?: SelectOptions): ExtractState;