/**
 * Created in {@link trim}.
 *
 * Used in {@link untrim}.
 */
export type TrimStorage = {
    trim: {
        before: string;
        after: string;
    };
};
/**
 * Captures whitespaces around the text.
 */
export declare const trim: import("./types").TaraskStep<TrimStorage>;
/**
 * Brings original whitespaces around the text back.
 */
export declare const untrim: import("./types").TaraskStep<TrimStorage>;
