import { default as React } from 'react'; import { Transformer } from 'unified'; export type RemarkReactLiquidTagProps = never, Config = unknown> = { type: string; url: string; options: Options; config?: Config; }; export type RemarkReactLiquidTagConfig = Props extends { type: infer Type extends string; config: infer Config; } ? { [K in Type]: Config; } : undefined; export type RemarkReactLiquidTagOptions = { component: React.ElementType; config?: RemarkReactLiquidTagConfig; }; declare const remarkReactLiquidTag: (options: RemarkReactLiquidTagOptions) => Transformer; export default remarkReactLiquidTag;