import { FillChatFormCommandArguments } from './types';
export declare const form: {
    /**
     * Opens the public chat panel automatically.
     */
    open: () => void;
    /**
     * Fills in the chat input when called.
     *
     * @param FillChatFormCommandArguments the text with which the method will fill the chat input.
     * Refer to {@link FillChatFormCommandArguments} to understand the argument structure.
     */
    fill: (fillChatFormCommandArguments: FillChatFormCommandArguments) => void;
};
