import { AnalyticsMetadata } from '../../types/analytics'; import { BaseComponentProps } from '../../types/base-component'; import './styles.css.js'; export declare function getBaseProps(props: BaseComponentProps): BaseComponentProps; export interface BasePropsWithAnalyticsMetadata { analyticsMetadata?: AnalyticsMetadata; __analyticsMetadata?: AnalyticsMetadata; } /** * Helper function to merge beta analytics metadata with the public analytics metadata api. * Beta analytics metadata will override the public values to allow for safe migration. */ export declare function getAnalyticsMetadataProps(props?: T): NonNullable; export { BaseComponentProps } from '../../types/base-component';