import { Shape, Path, BufferGeometry } from 'three';
interface TextStrokesParams {
    shapes?: Array<Array<Shape | Path>>;
    strokeWidth: number;
}
export declare function createGeometriesFromTypeStroke(params: TextStrokesParams): Promise<(BufferGeometry<import("three").NormalBufferAttributes> | undefined)[] | undefined>;
export {};
