import { IMaskerPipeOutput } from '@qiwi/masker-common'; import { IMaskerSchema, ISchemaContext } from './interfaces'; export declare const generateSchema: ({ before, after, pipe: { name } }: ISchemaContext) => IMaskerSchema; export declare const extractSchemaFromResult: (type: string, after: IMaskerPipeOutput & { schema?: IMaskerSchema; }) => IMaskerSchema; export declare const getSchemaType: (value: any) => string;