declare const RAW: unique symbol;
export interface Wrapper {
    [RAW]: string;
}
export declare function wrap(value: string): Wrapper;
declare function test(value: any): boolean;
declare function print(value: unknown): string;
declare const _default: {
    test: typeof test;
    print: typeof print;
};
export default _default;
