import { BEMProcessor } from "../util/BEMProcessor"; export declare class BlockImportExport extends BEMProcessor { "can import another block"(): Promise; "can import another block under a local alias using as syntax"(): Promise; "if blocks specify name independently of filename, imported name is still used for ref locally"(): Promise; "local block names in double quotes in @block fail parse with helpful error"(): Promise; "local block names in single quotes in @block fail parse with helpful error"(): Promise; "doesn't allow non-css-ident names in import"(): Promise; "requires from statement in @block"(): Promise; "able to export under same alias"(): Promise; "able to export under external alias of same name"(): Promise; "able to export under external alias of different name"(): Promise; "exports rely on imported alias"(): Promise; "able to export multiple blocks under external alias of different name"(): Promise; "able to export without parens"(): Promise; "able to export multiple blocks using mixed methods"(): Promise; "multiple export calls work"(): Promise; "export formats may be mixed and matched"(): Promise; "export from works as expected"(): Promise; "default is a reserved word – bare imports"(): Promise; "immediately re-exported blocks are not available locally"(): Promise; "default is a reserved word – named imports"(): Promise; "html is a reserved word – named imports"(): Promise; "html filename is a reserved word – named imports"(): Promise; "default is a reserved word – bare exports"(): Promise; "svg is a reserved word – bare exports"(): Promise; "default is a reserved word – named exports"(): Promise; "Block export must be an identifier"(): Promise; "throws error for unknown Blocks – export"(): Promise; "throws error for unknown Blocks – import"(): Promise; } //# sourceMappingURL=import-export-test.d.ts.map