/// <reference types="react" />
import { IIconProps } from '../Icon';
interface IOutwardArrowsIconProps extends IIconProps {
    /**	Determines the kind of arrows you want to display. \`horizontal\` is
        usually used for width. \`vertical\` is usually used for height.
        \`diagonal\` is usually used for aspect ratio. */
    kind?: 'horizontal' | 'vertical' | 'diagonal';
}
export declare const OutwardArrowsIcon: {
    ({ className, kind, ...passThroughs }: IOutwardArrowsIconProps): JSX.Element;
    displayName: string;
    peek: {
        description: string;
        categories: string[];
        extend: string;
        madeFrom: string[];
    };
    propTypes: {
        kind: any;
        className: any;
        size: any;
        width: any;
        height: any;
        viewBox: any;
        aspectRatio: any;
        isClickable: any;
        isDisabled: any;
        onClick: any;
        onSelect: any;
        children: any;
        color: any;
    };
    defaultProps: {
        size: number;
        aspectRatio: string;
        viewBox: string;
        isDisabled: boolean;
        isClickable: boolean;
        color: import("../Icon").Color;
        onClick: (...args: any[]) => void;
        onSelect: (...args: any[]) => void;
    };
};
export default OutwardArrowsIcon;
