type SassError = Error & {
    column?: number;
    id: string;
    line?: number;
};
declare const errorFactory: (error: Error & {
    formatted?: string;
    span?: {
        start: {
            column: number;
            line: number;
        };
    };
}, file: string) => SassError;
export = errorFactory;
