declare class ScriptTokenizer {
    /**
     * Cleans the script text to allow the parser to break
     * the script into correct tokens, pages, etc.
     *
     * @param { String } script
     * @returns { String }
     */
    clean(script: string): string;
    /**
     * Return an array of token objects breaking the screenplay into type, text, etc. tokens.
     *
     * @param { String } script - Text of the screenplay
     * @returns { Array<any> }
     */
    tokenize(script: string): any[];
}
declare const tokenizer: ScriptTokenizer;
export { tokenizer };
