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