export type SeparatorKind = "vendor_row_separator" | "end_row_separator"; export declare function Separator({ kind, isScrolling, }: { isScrolling: boolean; kind: SeparatorKind; }): import("react/jsx-runtime").JSX.Element;