/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ export interface Props { children: React.ReactNode; className?: string; role?: string; } export declare function Scrollable(props: Props): JSX.Element;