1 | import { TextStyleProps } from '@antv/f-engine';
|
2 | import { GuideProps } from '../withGuide';
|
3 | export interface TextGuideProps extends GuideProps {
|
4 | points?: {
|
5 | x: number;
|
6 | y: number;
|
7 | }[] | null;
|
8 | content: string | number;
|
9 | style?: Partial<TextStyleProps> | ((record?: any) => Partial<TextStyleProps>);
|
10 | offsetX?: number | string;
|
11 | offsetY?: number | string;
|
12 | theme?: any;
|
13 | }
|
14 | declare const _default: (props: TextGuideProps, context: any) => import("@antv/f-engine").JSX.Element;
|
15 | export default _default;
|