export declare const spaceTemplate = "\"use client\";\nimport { Space as CherrySpace } from \"cherry-styled-components\";\n\ntype SpaceSize = number | \"none\";\n\ninterface SpaceProps {\n size?: SpaceSize;\n xs?: SpaceSize;\n sm?: SpaceSize;\n md?: SpaceSize;\n lg?: SpaceSize;\n xl?: SpaceSize;\n xxl?: SpaceSize;\n xxxl?: SpaceSize;\n horizontal?: boolean;\n // Cherry marks its styling props transient with a $ prefix, which is an\n // implementation detail of styled-components rather than something an MDX\n // author should have to know - every other Doccupine component takes plain\n // names. Space was previously re-exported straight from Cherry, so pages\n // written against that API still pass the $ form: it stays accepted here,\n // with the documented plain name winning when both are present, so an\n // upgrade never silently drops a gap from an existing page.\n $size?: SpaceSize;\n $xs?: SpaceSize;\n $sm?: SpaceSize;\n $md?: SpaceSize;\n $lg?: SpaceSize;\n $xl?: SpaceSize;\n $xxl?: SpaceSize;\n $xxxl?: SpaceSize;\n $horizontal?: boolean;\n}\n\nfunction Space({\n size,\n xs,\n sm,\n md,\n lg,\n xl,\n xxl,\n xxxl,\n horizontal,\n $size,\n $xs,\n $sm,\n $md,\n $lg,\n $xl,\n $xxl,\n $xxxl,\n $horizontal,\n}: SpaceProps) {\n return (\n \n );\n}\n\nexport { Space };\n";