import type { ValueConverter } from '@microsoft/fast-element'; /** * A {@link @microsoft/fast-element#ValueConverter} that converts between comma-separated string attributes * and `string | string[]` properties. * * @remarks * - fromView: "A,B,C" → ["A","B","C"], "A" → "A", "" → undefined * - toView: ["A","B","C"] → "A,B,C", "A" → "A", undefined → "" * * @public */ export declare const stringArrayConverter: ValueConverter; //# sourceMappingURL=string-array-converter.d.ts.map