export type TextOutlineProps = { /** * @property {string} [color] * @version 0.0.3 */ color?: string; /** * @property {number | string} [outlineWidth=1] * @version 0.0.3 */ outlineWidth?: number | string; /** * @property {boolean} [autoPadding=true] * @version 0.0.3 */ autoPadding?: boolean; }; export type TextOutlineSlots = { /** * @version 0.0.3 */ default: {}; };