import Parent from '../../../block/base/parent'; import { TBlockPath } from '../../../block/types'; import Muya from '../../../index'; import { IAtxHeadingState } from '../../../state/types'; declare class AtxHeading extends Parent { meta: IAtxHeadingState['meta']; static blockName: string; static create(muya: Muya, state: IAtxHeadingState): AtxHeading; get path(): TBlockPath; constructor(muya: Muya, { meta }: IAtxHeadingState); getState(): IAtxHeadingState; } export default AtxHeading;