export declare const Meta: unique symbol;
export type StripMeta<T> = {
    [K in keyof T as K extends typeof Meta ? never : K]: T[K];
} & {};
