import * as React from 'react'; import type { ColumnMajorTransformMatrix, NumberProp, TextPathMethod, TextPathMidLine, TextPathSpacing, TextSpecificProps, TransformProps } from '../lib/extract/types'; import type { TextChild } from '../lib/extract/extractText'; import Shape from './Shape'; export interface TextPathProps extends TextSpecificProps { children?: TextChild; xlinkHref?: string; href?: string; startOffset?: NumberProp; method?: TextPathMethod; spacing?: TextPathSpacing; midLine?: TextPathMidLine; side?: string; } export default class TextPath extends Shape { static displayName: string; setNativeProps: (props: object & { matrix?: ColumnMajorTransformMatrix; style?: [] | unknown; } & TransformProps) => void; render(): React.JSX.Element; } //# sourceMappingURL=TextPath.d.ts.map