import { AbsSFSymbol } from 'scriptable-abstract'; interface SFSymbolState { name: string; image: Image; } declare class MockSFSymbol extends AbsSFSymbol { constructor(name: string); get name(): string; applyFont(_font: Font): this; applyThinWeight(): this; applyUltraLightWeight(): this; applyLightWeight(): this; applyRegularWeight(): this; applyMediumWeight(): this; applySemiboldWeight(): this; applyBoldWeight(): this; applyHeavyWeight(): this; applyBlackWeight(): this; applySmallSize(): this; applyMediumSize(): this; applyLargeSize(): this; toImage(): Image; } export { MockSFSymbol };