export interface ArkSections { template: { content: string; start: number; }; script: { content: string; lang: string; isSetup: boolean; }; style?: { content: string; scoped: boolean; }; } export declare class ArkParseError extends Error { readonly code: string; readonly line: number; constructor(code: string, message: string, line: number); } export declare function parseArkFile(source: string): ArkSections; //# sourceMappingURL=parser.d.ts.map