@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
18 lines • 849 B
TypeScript
import React from 'react';
import { NonCancelableEventHandler } from '../internal/events/index';
import { InternalBaseComponentProps } from '../internal/hooks/use-base-component';
import { PopoverProps } from './interfaces';
export interface InternalPopoverProps extends Omit<PopoverProps, 'triggerType' | 'size'>, InternalBaseComponentProps {
__onOpen?: NonCancelableEventHandler<null>;
triggerType?: PopoverProps.TriggerType | 'filtering-token';
size: PopoverProps.Size | 'content';
__closeAnalyticsAction?: string;
isInline?: boolean;
}
export interface InternalPopoverRef {
dismissPopover: () => void;
focus: HTMLElement['focus'];
}
declare const _default: React.ForwardRefExoticComponent<InternalPopoverProps & React.RefAttributes<InternalPopoverRef>>;
export default _default;
//# sourceMappingURL=internal.d.ts.map