You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
356 B

import * as React from 'react';
import { AlignType } from './types';
export declare type DropDirection = 'up' | 'start' | 'end' | 'down';
export declare type DropdownContextValue = {
align?: AlignType;
drop?: DropDirection;
isRTL?: boolean;
};
declare const DropdownContext: React.Context<DropdownContextValue>;
export default DropdownContext;