import type { SeparatorProps } from 'reakit';
export interface DividerProps extends SeparatorProps {
    /**
     * Adjusts all margins.
     */
    m?: number;
    /**
     * Adjusts top margins.
     */
    mt?: number;
    /**
     * Adjusts bottom margins.
     */
    mb?: number;
}
/**
 * `Divider` is a layout component that separates groups of related content.
 *
 * @example
 * ```js
 * import { Divider, FormGroup, ListGroup } from `@wordpress/components/ui`;
 *
 * function Example() {
 * 	return (
 * 		<ListGroup>
 * 			<FormGroup>...</FormGroup>
 * 			<Divider />
 * 			<FormGroup>...</FormGroup>
 * 		</ListGroup>
 * 	);
 * }
 * ```
 */
declare const ConnectedDivider: import("../context").PolymorphicComponent<"hr", DividerProps>;
export default ConnectedDivider;
//# sourceMappingURL=component.d.ts.map