export interface TrimOptions {
    skipStart: boolean;
    skipEnd: boolean;
    trimPredicate: (char: string) => boolean;
}
export declare function trim(str: string, options?: Partial<TrimOptions>): string;
export declare const falseValues: Set<string>;
export declare function parseBoolean(str: string): boolean;
