type Options = {
    include?: string;
    exclude?: string;
};
declare const extract: (input: string, { include, exclude, }?: Options) => string;
export { extract, Options };
