export declare type Options = {
    /** the indentation character */
    indenter?: string;
};
/**
 * Remove indentation from text
 *
 * @param input The indented text
 * @param pattern  (space)
 */
export declare function unindent(input: string, { indenter }?: Options): string;
export default unindent;
