import React from 'react'; export type SectionSeparatorProps = { children: React.ReactNode; dividerTestID?: string; }; declare const SectionSeparator: ({ children, dividerTestID, }: SectionSeparatorProps) => React.JSX.Element; export default SectionSeparator;