import { type TagType } from '../store/Types'; import { type SectionElement } from '../store/Section'; export type CopiedSectionElement = SectionElement & { beforeCopy?: (copyText: string, keyName?: string | number, value?: object, parentValue?: object, expandKey?: string, keys?: (number | string)[]) => string; }; export declare const Copied: { (props: CopiedSectionElement): null; displayName: string; };