import { DividerClassNameContract } from "@microsoft/fast-components-class-name-contracts-base"; import Foundation, { HandledProps } from "@microsoft/fast-components-foundation-react"; import React from "react"; import { DividerHandledProps, DividerProps, DividerUnhandledProps } from "./divider.props"; declare class Divider extends Foundation { static displayName: string; static defaultProps: Partial; protected handledProps: HandledProps; /** * Renders the component */ render(): React.ReactElement; /** * Generates the attributes */ protected generateAttributes(): React.HTMLAttributes; /** * Generates class names */ protected generateClassNames(): string; } export default Divider; export * from "./divider.props"; export { DividerClassNameContract };