/**
 * Determine whether a string contains an extglob pattern.
 * Extglob patterns use one of: @(...) ?(...) !(...) +(...) *(...)
 *
 * Modernized TypeScript replacement for the `is-extglob` npm package.
 */
export declare function isExtglob(str: string): boolean;
