import { SecretLintSourceCode } from "@secretlint/types"; export declare const parseComments: (source: SecretLintSourceCode) => ({ type: "secretlint-disable-line"; options: string[]; line: number; index?: undefined; } | { type: "secretlint-disable-next-line"; options: string[]; line: number; index?: undefined; } | { type: "secretlint-enable" | "secretlint-disable"; options: string[]; index: number; line?: undefined; })[]; /** * Parses a config of values separated by comma. * * secretlint-disable a,b,c => ["a", "b", "c"] * secretlint-disable -- comment => [] */ export declare function parseComment(options?: string): string[]; //# sourceMappingURL=parse-comment.d.ts.map