///
import type { PressableProps } from 'react-native';
import type { ThemeVarType } from './styles';
export declare type $Omit = Pick>;
export declare type $RemoveChildren> = $Omit, 'children'>;
export declare type EllipsizeProp = 'head' | 'middle' | 'tail' | 'clip';
declare global {
namespace DiceUI {
type Theme = ThemeVarType;
}
}
declare type Inline = Partial<{
/**
* @default None
* @type PressableProps except click handlers
*/
pressableProps: Omit;
} & Pick>;
export declare type InlinePressableProps = Inline;
export {};