import { Connection } from "./connection.js"; import { HassEntity, HassServices, HassConfig, HassUser } from "./types.js"; export declare const getStates: (connection: Connection) => Promise; export declare const getServices: (connection: Connection) => Promise; export declare const getConfig: (connection: Connection) => Promise; export declare const getUser: (connection: Connection) => Promise; export declare const callService: (connection: Connection, domain: string, service: string, serviceData?: object | undefined) => Promise;