/**
 * Represents an element that is exposed in a Sass import.
 */
export interface SassImportExposedElement {
    /** The name of the exposed element */
    value: string;
    /** The type of the exposed element, either 'function' or 'var' */
    type: 'function' | 'var';
    /** The name of the replacement element, if any */
    replacement?: string | undefined;
}
export declare const listOfExposedElements: SassImportExposedElement[];
//# sourceMappingURL=list-of-vars.d.ts.map