/** * SCSS-JSON Parser * Convert SCSS to JSON and back */ export { toJSON, SCSSParser } from './parser.js'; export { toSCSS, SCSSGenerator } from './generator.js'; export type { ParseOptions, GenerateOptions, SCSSJson, SelectorNode, PropertyNode, VariableNode, CommentNode, MediaQueryNode, SectionNode, SourceLocation, } from './types.js'; //# sourceMappingURL=index.d.ts.map