import { Intent, Handler } from "stentor-models"; /** * Detect if the intent is a * @param props * @returns */ export declare function isBuiltInIntent(props: Handler | Intent): boolean; /** * Determine if the props are for an Intent * * @public */ export declare function isIntent(props: Handler | Intent): props is Intent;