import type { IfProps, BlockProps, WhileProps, PromptProps, LabelProps, CallProps, EffectProps, ReturnProps, AnyScriptLibrary } from './types.js'; /** * @category Keyword */ export declare const BLOCK: (props: BlockProps) => null; /** * @category Keyword */ export declare const IF: (props: IfProps) => null; /** * @category Keyword */ export declare const ELSE_IF: (props: IfProps) => null; /** * @category Keyword */ export declare const ELSE: (props: BlockProps) => null; /** * @category Keyword */ export declare const WHILE: (props: WhileProps) => null; /** * @category Keyword */ export declare const PROMPT: (props: PromptProps) => null; /** * @category Keyword */ export declare const LABEL: (props: LabelProps) => null; /** * @category Keyword */ export declare const CALL: (props: CallProps) => null; /** * @category Keyword */ export declare const EFFECT: (props: EffectProps) => null; /** * @category Keyword */ export declare const RETURN: (props: ReturnProps) => null;