import type { Rule } from '@angular-devkit/schematics'; interface MaterialSetupOptions { project: string; theme: 'indigo-pink' | 'deeppurple-amber' | 'pink-bluegrey' | 'purple-green' | 'custom'; typography: boolean; animations: boolean; } export declare function materialSetup(options: MaterialSetupOptions): Rule; export {};