import type { AST } from 'svelte-eslint-parser';
export type TransformResult = {
    inputRange: AST.Range;
    output: string;
    mappings: string;
};
