react-native-ui-lib
Version:
[](https://stand-with-ukraine.pp.ua)
10 lines (9 loc) • 398 B
TypeScript
import React from 'react';
import { ColorPickerDialogProps } from './ColorPickerDialog';
type HeaderProps = Pick<ColorPickerDialogProps, 'doneButtonColor' | 'accessibilityLabels' | 'testID'> & {
valid: boolean;
onDismiss: () => void;
onDonePressed: () => void;
};
declare const ColorPickerDialogHeader: (props: HeaderProps) => React.JSX.Element;
export default ColorPickerDialogHeader;