import { BaseProps } from './types';
export interface WiredDividerProps extends BaseProps {
    /**
     * Gives the button a sketchy height.
     * @default 1
     */
    elevation?: 1 | 2 | 3 | 4 | 5;
}
export declare const WiredDivider: ({ elevation, className, style, }: WiredDividerProps) => JSX.Element;
