/** * The Props for the {@link TemplateCardActions} component * @alpha */ export interface TemplateCardActionsProps { ownedByRelations: any; canCreateTask: boolean; handleChoose: () => void; } export declare const TemplateCardActions: ({ canCreateTask, handleChoose, ownedByRelations, }: TemplateCardActionsProps) => import("react/jsx-runtime").JSX.Element;