export default function predicateCreator<T extends string>(strings: TemplateStringsArray, ...expressions: any[]): (input: any) => input is T;
